#ifndef FILE_H #define FILE_H #include typedef struct file_struct { int fgetc(); int fputc(); void *opaque; }file; #endif