Files
mpc/tests/test.c

15 lines
214 B
C
Raw Normal View History

2013-09-19 20:57:40 +01:00
#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;
}