Convert codebase to C89 compatibility and update test scripts

This commit is contained in:
2026-04-29 10:20:30 +02:00
parent 189c21667b
commit 146aa4d9d1
14 changed files with 287 additions and 192 deletions
+2 -2
View File
@@ -6,8 +6,6 @@
#include "token.h"
#include <stdbool.h>
typedef void (*Test)(void);
/**
@@ -56,6 +54,8 @@ void assert_int(int expected, int actual, const char* msg);
/**
* Asserts that a condition is true.
*/
#include "bool.h"
void assert_true(bool condition, const char* msg);
/**