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

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

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