bootstrap/test/test_cases.h

10 lines
152 B
C
Raw Permalink Normal View History

2023-12-19 23:58:19 +00:00
#ifndef _BOOTSTRAP_TEST_CASE_H
#define _BOOTSTRAP_TEST_CASE_H
struct TestCase {
char *name;
int (*func)();
};
#endif /* _BOOTSTRAP_TEST_CASE_H */