14 lines
234 B
C
14 lines
234 B
C
#ifndef _STDIO_H
|
|
#define _STDIO_H
|
|
|
|
#include <stdarg.h>
|
|
|
|
#ifndef NULL
|
|
#define NULL ((void *)0)
|
|
#endif // NULL
|
|
|
|
int sprintf(char *s, const char *format, ...);
|
|
int vsprintf(char *s, const char *format, va_list args);
|
|
|
|
#endif // _STDIO_H
|