summaryrefslogtreecommitdiff
path: root/main.c
blob: 12f146913b35cb7e3125972051022ad15a68a508 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include <string.h>
#include "test.h"

int main(int argc, char *argv[])
{
	if (argc == 2) {
		if (!strcmp(argv[1], "assert")) {
			test_assert();
		}
	}

	test_time();
	test_errno();
	test_ctype();
	test_locale();
	return 0;
}