From 33b9d606916f3847e0f754693ca49ce56175a330 Mon Sep 17 00:00:00 2001 From: Freya Murphy Date: Thu, 3 Apr 2025 12:29:48 -0400 Subject: refactor include --- include/stdbool.h | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 include/stdbool.h (limited to 'include/stdbool.h') diff --git a/include/stdbool.h b/include/stdbool.h new file mode 100644 index 0000000..dddf1c9 --- /dev/null +++ b/include/stdbool.h @@ -0,0 +1,17 @@ +/** + * @file stdbool.h + * @author Freya Murphy + * @author Warren R. Carithers + * + * Boolean definitions. + */ + +#ifndef _STDBOOL_H +#define _STDBOOL_H + +// Boolean values +typedef _Bool bool; +#define true 1 +#define false 0 + +#endif /* stdbool.h */ -- cgit v1.2.3-freya