--- libelwix/example/Attic/test_valid.c 2025/08/21 16:08:20 1.1 +++ libelwix/example/Attic/test_valid.c 2025/08/25 10:14:31 1.1.2.2 @@ -0,0 +1,15 @@ +#include +#include + + +int +main(int argc, char **argv) +{ + int started = 0; + + if (argc < 2) + return 1; + + printf("started=%d validate=%d\n", started, json_validate(argv[1], &started)); + return 0; +}