website

Website contents
git clone git://git.reagancfischer.dev/website.git
Log | Files | Refs

input.h (190B)


      1 /* input.h */
      2 #ifndef INPUT_H
      3 #define INPUT_H
      4 /* Input Interface */
      5 void input_init(const char *filename);
      6 int input_getc(void);
      7 void input_ungetc(int c);
      8 void input_destroy(void);
      9 
     10 #endif
     11