From d37eb3feb226623431a464b189edf2fc2f31beed Mon Sep 17 00:00:00 2001 From: Alessandro Iezzi Date: Thu, 11 May 2023 17:26:15 +0200 Subject: Add tests --- test/main.c | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 test/main.c (limited to 'test/main.c') diff --git a/test/main.c b/test/main.c new file mode 100644 index 0000000..479d529 --- /dev/null +++ b/test/main.c @@ -0,0 +1,14 @@ +/* See LICENSE file for copyright and license details. */ + +#include + +void test_split1(); +void test_split2(); + +int main(int argc, char** argv) +{ + test_split1(); + test_split2(); + + return EXIT_SUCCESS; +} -- cgit v1.2.3