aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/io.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/io.h')
-rw-r--r--src/io.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/io.h b/src/io.h
index fff3558..604b8f6 100644
--- a/src/io.h
+++ b/src/io.h
@@ -18,9 +18,9 @@ typedef struct {
} InFile;
InFile* infile_open(const char* filename);
-BOOL infile_eof(InFile* f);
+bool infile_eof(InFile* f);
char infile_peek_char(InFile* f);
char infile_next_char(InFile* f);
-BOOL infile_consume_if(InFile* f, char expected);
+bool infile_consume_if(InFile* f, char expected);
#endif