Replace vsprintf implementation

This commit is contained in:
marcan 2009-03-05 18:11:29 +01:00 committed by bushing
parent f1256c2b77
commit e494b77692
3 changed files with 758 additions and 262 deletions

View File

@ -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

File diff suppressed because it is too large Load Diff

View File

@ -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);