Implement public import parsing and add test case

This commit is contained in:
2026-04-25 15:06:20 +02:00
parent d8544d7743
commit 63dd5fa5c9
4 changed files with 47 additions and 0 deletions
+10
View File
@@ -49,4 +49,14 @@ void assert_log_file(const char* filepath, const char* msg);
*/
void assert_int(int expected, int actual, const char* msg);
/**
* Asserts that a condition is true.
*/
void assert_true(bool condition, const char* msg);
/**
* Asserts that a condition is false.
*/
void assert_false(bool condition, const char* msg);
#endif