#ifndef TESTS_H #define TESTS_H typedef struct { char *Name; // The test function. If it returns an error message // the test is concidered as failed char *(*Function)(); } UnitTest; char *reportError(const char *format, ...); // ========== TESTS ========== char *ArenaAllocation(); char *ArenaOutOfMemory(); char *difficultyCalculator(); char *timerPrintDisplay(); #endif // TESTS_H