File.h 213 B

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