mirror of
https://github.com/xcat2/xNBA.git
synced 2024-12-14 15:21:32 +00:00
15 lines
366 B
C
15 lines
366 B
C
|
#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 */
|