2
0
mirror of https://github.com/xcat2/xNBA.git synced 2024-12-14 15:21:32 +00:00
xNBA/src/include/vsprintf.h

15 lines
366 B
C
Raw Normal View History

#ifndef VSPRINTF_H
#define VSPRINTF_H
/*
* Note that we cannot use __attribute__ (( format ( printf, ... ) ))
* to get automatic type checking on arguments, because we use
* non-standard format characters such as "%!" and "%@".
*
*/
extern int sprintf ( char *buf, const char *fmt, ... );
extern void printf ( const char *fmt, ... );
#endif /* VSPRINTF_H */