diff options
Diffstat (limited to 'include/file.h')
-rw-r--r-- | include/file.h | 3 |
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 |