aboutsummaryrefslogtreecommitdiff
path: root/cat.h
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2016-03-04 10:36:08 +1300
committerTom Ryder <tom@sanctum.geek.nz>2016-03-04 10:36:51 +1300
commit4b49eed6098881fbde1f6c7728c1346fc8366979 (patch)
tree7c5a3d7ee9ec01e71ae1e6eea1f59533c0ca4c8d /cat.h
parentClean up Makefile a bit (diff)
downloadcat-4b49eed6098881fbde1f6c7728c1346fc8366979.tar.gz
cat-4b49eed6098881fbde1f6c7728c1346fc8366979.zip
Switch to fopen/fread etc
Not quite finished yet -- this does things with stdin I didn't expect, like not printing it line-by-line, and requiring two EOFs for some reason.
Diffstat (limited to 'cat.h')
-rw-r--r--cat.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/cat.h b/cat.h
index 2a2e494..da5e7ed 100644
--- a/cat.h
+++ b/cat.h
@@ -19,7 +19,7 @@
/* Function prototypes so that I can refer to these functions in main() before
* I actually define them */
int cfn(const char *fn, void *buf);
-int cfd(int fd, void *buf);
+int cfp(FILE *fp, void *buf);
#endif