Initial commit

This commit is contained in:
2026-04-24 07:24:03 +02:00
parent 14fced76f0
commit f6a1b290fc
7 changed files with 84 additions and 15 deletions
+16
View File
@@ -0,0 +1,16 @@
/**
* Contains test assertions routines.
*/
#ifndef TEST_H
#define TEST_H
// @copilot fix the syntax. This is a typedef for any function taking a void and returning void.
typedef Test void(void);
/**
* Fails a test.
* @param msg The message to print to the console.
*/
void fail(const char* msg);
#endif