getch/tests/test.h

18 lines
222 B
C
Raw Normal View History

2021-01-25 12:35:32 -08:00
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);