1
0
Fork 0
forked from len0rd/rockbox

added vsnprintf

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1036 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Daniel Stenberg 2002-06-17 13:22:40 +00:00
parent 86e064a90e
commit ebe6cc007d

View file

@ -21,7 +21,9 @@
#define __SPRINTF_H__
#include <stddef.h>
#include <stdarg.h>
int snprintf (char *buf, size_t size, const char *fmt, ...);
int vsnprintf (char *buf, int size, const char *fmt, va_list ap);
#endif /* __SPRINTF_H__ */