summaryrefslogtreecommitdiffstats
path: root/fgetc.h
blob: f458928b1bff331898c6020d603cae5a2be47807 (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);

void
my_ungetc(int c);

#endif