File.h 153 B

12345678910111213
  1. #ifndef FILE_H
  2. #define FILE_H
  3. #include <stdbool.h>
  4. bool fOpen(const char* path);
  5. void fClose();
  6. int fRead();
  7. int fPeek();
  8. bool fReadIf(int c);
  9. #endif