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