summaryrefslogtreecommitdiffstats
path: root/fgetc.h
blob: 3948588a327aab2607a5c4742779c3d972ddb077 (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, FILE * input);

#endif