From 238db546686f06fcb0fb5ba343174c55c9f43195 Mon Sep 17 00:00:00 2001 From: Adwaith-Rajesh Date: Sun, 28 Sep 2025 12:37:41 +0530 Subject: [PATCH] allow the users to set the MAX_TEST_FUNCS value --- test.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test.h b/test.h index c8cc564..40ecc1f 100644 --- a/test.h +++ b/test.h @@ -14,7 +14,9 @@ #define COLOR_YELLOW "\x1b[33;1m" #define COLOR_RESET "\x1b[0m" +#ifndef MAX_TEST_FUNCS #define MAX_TEST_FUNCS 256 +#endif typedef int (*test_func_t)();