aboutsummaryrefslogtreecommitdiff
path: root/include/file.h
diff options
context:
space:
mode:
authorShav Kinderlehrer <[email protected]>2023-04-17 18:40:17 -0400
committerShav Kinderlehrer <[email protected]>2023-04-17 18:40:17 -0400
commitf853dabe7f3585ec856669c6711df08087b65cd8 (patch)
treeb8b89665b23fe807a88810d89805e29ae5ffd946 /include/file.h
parentab10a9c2176faa2f339d4e39ace58b811a6c05be (diff)
downloadlat-f853dabe7f3585ec856669c6711df08087b65cd8.tar.gz
lat-f853dabe7f3585ec856669c6711df08087b65cd8.zip
Fix stdin supportv0.7.4
Diffstat (limited to 'include/file.h')
-rw-r--r--include/file.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/file.h b/include/file.h
index 5518d17..8612857 100644
--- a/include/file.h
+++ b/include/file.h
@@ -1,7 +1,8 @@
#ifndef FILE_H
#define FILE_H
+#include <stdbool.h>
#include <stdio.h>
-struct filedata readfile(FILE *fp);
+struct filedata readfile(FILE *fp, bool isstdin);
#endif