Files
mpc/tests/test.c
Daniel Holden c2f936bcb7 First commit
2013-09-19 20:57:40 +01:00

15 lines
214 B
C

#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;
}