First commit
This commit is contained in:
15
tests/test.c
Normal file
15
tests/test.c
Normal file
@@ -0,0 +1,15 @@
|
||||
#include <stdbool.h>
|
||||
|
||||
bool suite_ident(void);
|
||||
bool suite_math(void);
|
||||
bool suite_regex(void);
|
||||
|
||||
int main(int argc, char** argv) {
|
||||
|
||||
suite_ident();
|
||||
suite_math();
|
||||
suite_regex();
|
||||
|
||||
return 0;
|
||||
|
||||
}
|
Reference in New Issue
Block a user