From 980d73ce25b116e645b16e9ed37dcf55fdffad7a Mon Sep 17 00:00:00 2001 From: nsfisis Date: Wed, 3 Sep 2025 20:36:22 +0900 Subject: feat: support native bool/true/false --- src/io.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/io.h') 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 -- cgit v1.2.3-70-g09d2