From e6611a0bb47c93fd26c5ef4d7a7c7d2bfd099bf7 Mon Sep 17 00:00:00 2001 From: TazyFoundSoup Date: Sun, 1 Mar 2026 15:56:56 +1100 Subject: feat(result): Create freestanding boolean alternative --- include/tinyff/result.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'include/tinyff') diff --git a/include/tinyff/result.h b/include/tinyff/result.h index e77c9b4..43bcf98 100644 --- a/include/tinyff/result.h +++ b/include/tinyff/result.h @@ -1,6 +1,11 @@ #ifndef RESULT_H #define RESULT_H +typedef enum { + FF_TRUE = 0, + FF_FALSE = 1 +} FF_FLAG; + typedef enum { // -- SUCCESS -- FF_RESULT_OK = 0, -- cgit v1.2.3