summaryrefslogtreecommitdiffstats
path: root/fgetc.h
blob: 72e9cfa9837192bdf1e1c500911a6630981bde94 (plain)
1
2
3
4
5
6
7
8
9
10
#ifndef FGETC_H
#define FGETC_H

int
my_fgetc(FILE * input);

void
my_ungetc(int c);

#endif