summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakob Kaivo <jkk@ung.org>2019-01-01 09:19:26 -0500
committerJakob Kaivo <jkk@ung.org>2019-01-01 09:19:26 -0500
commit2b84ac43f7c2f26d53f2c66db475c18c68c94923 (patch)
treefd38d586ef67a0ddc85f57756bdf0be6755d0604
parentd3edca1670ffc448570745bcc060e8dcce7966c3 (diff)
runs tests for <ctype.h> and <assert.h>
-rw-r--r--main.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/main.c b/main.c
new file mode 100644
index 0000000..09c2d4a
--- /dev/null
+++ b/main.c
@@ -0,0 +1,8 @@
+#include "test.h"
+
+int main(int argc, char *argv[])
+{
+ test_ctype();
+ test_assert();
+ return 0;
+}