summaryrefslogtreecommitdiffstats
path: root/fgetc.h
blob: 00b19ae861b3ad43d07970abf90427aa12d03793 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* ################################################################### */
/* Copyright 2015, Pierre Gentile (p.gen.progs@gmail.com)              */
/*                                                                     */
/* This Source Code Form is subject to the terms of the Mozilla Public */
/* License, v. 2.0. If a copy of the MPL was not distributed with this */
/* file, You can obtain one at https://mozilla.org/MPL/2.0/.           */
/* ################################################################### */

#ifndef FGETC_H
#define FGETC_H

#include <errno.h>

int
my_fgetc(FILE *input);

int
my_ungetc(int c, FILE *input);

#endif