polyadvent

A game engine from scratch in C
git clone git://jb55.com/polyadvent
Log | Files | Refs | README

file.h (213B)


      1 #ifndef POLYADVEMT_FILE_H
      2 #define POLYADVEMT_FILE_H
      3 
      4 #include <time.h>
      5 
      6 time_t file_mtime(const char *filename);
      7 unsigned char *file_contents(const char *filename, size_t *length);
      8 
      9 #endif /* POLYADVEMT_FILE_H */