mirror of
https://github.com/fail0verflow/mini.git
synced 2024-11-24 12:19:21 +01:00
Replace vsprintf implementation
This commit is contained in:
parent
f1256c2b77
commit
e494b77692
2
types.h
2
types.h
@ -38,5 +38,7 @@ typedef s32 size_t;
|
||||
(u32)(_al__##name))&((alignment)-1))))
|
||||
|
||||
|
||||
#define INT_MAX ((int)0x7fffffff)
|
||||
#define UINT_MAX ((unsigned int)0xffffffff)
|
||||
|
||||
#endif
|
||||
|
1017
vsprintf.c
1017
vsprintf.c
File diff suppressed because it is too large
Load Diff
@ -1,3 +1,4 @@
|
||||
#include <stdarg.h>
|
||||
|
||||
int vsprintf(char *buf, const char *fmt, va_list args);
|
||||
int vsnprintf(char *buf, size_t size, const char *fmt, va_list args);
|
||||
|
Loading…
Reference in New Issue
Block a user