14 lines
398 B
C
14 lines
398 B
C
#ifndef STDIO_H
|
|
#define STDIO_H
|
|
#include <stddef.h>
|
|
#include <stdarg.h>
|
|
typedef void FILE;
|
|
#define stderr ((FILE*)0)
|
|
#define stdout ((FILE*)1)
|
|
int printf(const char* format, ...);
|
|
int sprintf(char* str, const char* format, ...);
|
|
int snprintf(char* str, size_t size, const char* format, ...);
|
|
size_t fwrite(const void* ptr, size_t size, size_t nmemb, FILE* stream);
|
|
int fflush(FILE* stream);
|
|
#endif
|