HariboteOS/day9/libc/include/stdio.h
2021-03-19 22:42:18 +08:00

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