23 lines
314 B
C
23 lines
314 B
C
#ifndef STDIO_H_
|
|
#define STDIO_H_
|
|
|
|
#include <stdarg.h>
|
|
#include <stddef.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
extern int snprintf(char *buffer, size_t count, const char *format, ...);
|
|
extern int vsnprintf(
|
|
char *buffer,
|
|
size_t count,
|
|
const char *format,
|
|
va_list va);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|