blob: be6fc76920f7775500c8f688bf18cf96a2c70657 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#include <string.h>
#include "test.h"
int main(int argc, char *argv[])
{
if (argc == 2) {
if (!strcmp(argv[1], "assert")) {
test_assert();
}
}
test_ctype();
test_locale();
return 0;
}
|