First commit

This commit is contained in:
Daniel Holden
2013-09-19 20:57:40 +01:00
commit c2f936bcb7
9 changed files with 1884 additions and 0 deletions

15
tests/test.c Normal file
View 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;
}