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; }