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