summaryrefslogtreecommitdiffstats
path: root/fgetc.h
diff options
context:
space:
mode:
authorpgen <p.gen.progs@gmail.com>2018-09-29 14:57:23 +0200
committerpgen <p.gen.progs@gmail.com>2018-10-01 19:36:56 +0200
commit54a29e1c65c17851cff2dfcae6a7540c4d64f125 (patch)
tree2eda10cf03d52837b8b9a0e37425877263606c46 /fgetc.h
parent79ddfc36120edfedf8c7c2ea6ce4eff05fac4fb6 (diff)
Create fgetc.[ch]
Diffstat (limited to 'fgetc.h')
-rw-r--r--fgetc.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/fgetc.h b/fgetc.h
new file mode 100644
index 0000000..72e9cfa
--- /dev/null
+++ b/fgetc.h
@@ -0,0 +1,10 @@
+#ifndef FGETC_H
+#define FGETC_H
+
+int
+my_fgetc(FILE * input);
+
+void
+my_ungetc(int c);
+
+#endif