From 7de14dbc0b642ee492fe592ccb53e8d81a4dc599 Mon Sep 17 00:00:00 2001 From: Peter Mikkelsen Date: Wed, 12 Nov 2025 21:49:50 +0100 Subject: Initial commit --- src/tests/test1.c | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 src/tests/test1.c (limited to 'src/tests/test1.c') diff --git a/src/tests/test1.c b/src/tests/test1.c new file mode 100644 index 0000000..1c2f886 --- /dev/null +++ b/src/tests/test1.c @@ -0,0 +1,12 @@ +#include +#include +#include + +int +main(int argc, char *argv[]) +{ + APLWCFunctions fns; + aplwc_init_fns(&fns); + APLWC *aplwc = aplwc_init(&fns, NULL); + exit(aplwc ? EXIT_SUCCESS : EXIT_FAILURE); +} -- cgit v1.2.3