aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/cli.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/cli.h
parent256cbd88c53d15884f3519ce75890c7bd1626cb2 (diff)
downloadducc-980d73ce25b116e645b16e9ed37dcf55fdffad7a.tar.gz
ducc-980d73ce25b116e645b16e9ed37dcf55fdffad7a.tar.zst
ducc-980d73ce25b116e645b16e9ed37dcf55fdffad7a.zip
feat: support native bool/true/false
Diffstat (limited to 'src/cli.h')
-rw-r--r--src/cli.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/cli.h b/src/cli.h
index 0fb106a..ec1fa50 100644
--- a/src/cli.h
+++ b/src/cli.h
@@ -6,10 +6,10 @@
typedef struct {
const char* input_filename;
const char* output_filename;
- BOOL output_assembly;
- BOOL only_compile;
- BOOL generate_deps;
- BOOL totally_deligate_to_gcc;
+ bool output_assembly;
+ bool only_compile;
+ bool generate_deps;
+ bool totally_deligate_to_gcc;
const char* gcc_command;
} CliArgs;