1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
/* See LICENSE file for copyright and license details. */ #include <stdlib.h> void test_split1(); void test_split2(); void test_split3(); int main(int argc, char** argv) { test_split1(); test_split2(); test_split3(); return EXIT_SUCCESS; }