From 7c37a7bd28af2134386fccf5d74c49be207301ad Mon Sep 17 00:00:00 2001 From: Evan Burkey Date: Tue, 8 Mar 2022 08:10:24 -0800 Subject: [PATCH] add lfbool --- include/lfbool.h | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 include/lfbool.h diff --git a/include/lfbool.h b/include/lfbool.h new file mode 100644 index 0000000..15a4ac6 --- /dev/null +++ b/include/lfbool.h @@ -0,0 +1,7 @@ +#ifndef LIBFLINT_BOOL_H +#define LIBFLINT_BOOL_H + +#define LFTRUE 1 +#define LFFALSE 0 + +#endif // LIBFLINT_BOOL_H