aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/token.h
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2025-09-03 20:36:22 +0900
committernsfisis <nsfisis@gmail.com>2025-09-03 20:36:22 +0900
commit980d73ce25b116e645b16e9ed37dcf55fdffad7a (patch)
tree1039ecaa3a98b443a6818d660763051be1f5a54b /src/token.h
parent256cbd88c53d15884f3519ce75890c7bd1626cb2 (diff)
downloadducc-980d73ce25b116e645b16e9ed37dcf55fdffad7a.tar.gz
ducc-980d73ce25b116e645b16e9ed37dcf55fdffad7a.tar.zst
ducc-980d73ce25b116e645b16e9ed37dcf55fdffad7a.zip
feat: support native bool/true/false
Diffstat (limited to 'src/token.h')
-rw-r--r--src/token.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/token.h b/src/token.h
index 72db22b..0bf23f6 100644
--- a/src/token.h
+++ b/src/token.h
@@ -146,7 +146,7 @@ typedef enum {
} TokenKind;
const char* token_kind_stringify(TokenKind k);
-BOOL is_pp_directive(TokenKind k);
+bool is_pp_directive(TokenKind k);
// TokenValue is externally tagged by Token's kind.
typedef union {