bootstrap/test/test_cases.h

10 lines
152 B
C

#ifndef _BOOTSTRAP_TEST_CASE_H
#define _BOOTSTRAP_TEST_CASE_H
struct TestCase {
char *name;
int (*func)();
};
#endif /* _BOOTSTRAP_TEST_CASE_H */