18 lines
222 B
C
18 lines
222 B
C
|
|
||
|
typedef struct _iobuf
|
||
|
{
|
||
|
char* _ptr;
|
||
|
int _cnt;
|
||
|
char* _base;
|
||
|
int _flag;
|
||
|
int _file;
|
||
|
int _charbuf;
|
||
|
int _bufsiz;
|
||
|
char* _tmpfname;
|
||
|
} FILE;
|
||
|
|
||
|
FILE *stdin;
|
||
|
|
||
|
int ungetc(int ch, FILE *stream);
|
||
|
|