summaryrefslogtreecommitdiffstats
path: root/fgetc.h
blob: 4359d26198eb79fb7b2aa313ff4e7fdb0747e752 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* ########################################################### */
/* This Software is licensed under the GPL licensed Version 2, */
/* please read http://www.gnu.org/copyleft/gpl.html            */
/* ########################################################### */

#ifndef FGETC_H
#define FGETC_H

int
my_fgetc(FILE * input);

int
my_ungetc(int c, FILE * input);

#endif