#ifndef FILE_H #define FILE_H #include bool fOpen(const char* path); void fClose(); int fRead(); int fPeek(); bool fReadIf(int c); #endif