mirror of
https://github.com/fail0verflow/mini.git
synced 2024-11-24 20:26:55 +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))))
|
(u32)(_al__##name))&((alignment)-1))))
|
||||||
|
|
||||||
|
|
||||||
|
#define INT_MAX ((int)0x7fffffff)
|
||||||
|
#define UINT_MAX ((unsigned int)0xffffffff)
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
1015
vsprintf.c
1015
vsprintf.c
File diff suppressed because it is too large
Load Diff
@ -1,3 +1,4 @@
|
|||||||
#include <stdarg.h>
|
#include <stdarg.h>
|
||||||
|
|
||||||
int vsprintf(char *buf, const char *fmt, va_list args);
|
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