apio
80ab982fe4
what were before one extern FILE* without reference now are opened by libc on program initialization, to point to /dev/console by default.
51 lines
1.1 KiB
C
51 lines
1.1 KiB
C
#ifndef _STDIO_H
|
|
#define _STDIO_H
|
|
|
|
#include <stdarg.h>
|
|
#include <stddef.h>
|
|
|
|
#define SEEK_SET 0
|
|
|
|
typedef struct
|
|
{
|
|
int f_fd;
|
|
int f_eof;
|
|
int f_err;
|
|
} FILE;
|
|
|
|
extern FILE* __stderr;
|
|
extern FILE* __stdout;
|
|
#define stderr __stderr
|
|
#define stdout __stdout
|
|
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
{
|
|
#endif
|
|
int fclose(FILE*);
|
|
int fflush(FILE*);
|
|
FILE* fopen(const char*, const char*);
|
|
int fprintf(FILE*, const char*, ...);
|
|
size_t fread(void*, size_t, size_t, FILE*);
|
|
int fseek(FILE*, long, int);
|
|
long ftell(FILE*);
|
|
size_t fwrite(const void*, size_t, size_t, FILE*);
|
|
int ferror(FILE*);
|
|
int feof(FILE*);
|
|
void clearerr(FILE*);
|
|
void setbuf(FILE*, char*);
|
|
int vfprintf(FILE*, const char*, va_list);
|
|
int printf(const char*, ...);
|
|
int vprintf(const char*, va_list);
|
|
int sprintf(char*, const char*, ...);
|
|
int snprintf(char*, size_t, const char*, ...);
|
|
int vsprintf(char*, const char*, va_list);
|
|
int vsnprintf(char*, size_t, const char*, va_list);
|
|
int puts(const char*);
|
|
void perror(const char*);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif |