Bug fixes

This commit is contained in:
John Jones 2017-02-20 17:45:48 -05:00
parent 4e281ddd08
commit 0b8789ebbc
4 changed files with 33 additions and 13 deletions

View file

@ -4,12 +4,16 @@
const char* names[] = {
"test_new_from_string",
"test_full"
"test_full",
"test_hex_to_var",
"test_int_to_hex"
};
int (*funcs[])(void) = {
test_new_from_string,
test_full
test_full,
test_hex_to_var,
test_int_to_hex
};
int testit(const char* name, int (*func)(void)) {