1 /* ########################################################### */
2 /* This Software is licensed under the GPL licensed Version 2, */
3 /* please read http://www.gnu.org/copyleft/gpl.html            */
4 /* ########################################################### */
5 
6 #ifndef FGETC_H
7 #define FGETC_H
8 
9 int
10 my_fgetc(FILE * input);
11 
12 void
13 my_ungetc(int c);
14 
15 #endif
16