4 static const struct argp_option test_options
[] =
6 { NULL
, 'a', NULL
, OPTION_DOC
, NULL
},
7 { NULL
, 'b', NULL
, OPTION_DOC
, NULL
},
8 { NULL
, 0, NULL
, 0, NULL
}
11 static struct argp test_argp
=
18 do_test (int argc
, char *argv
[])
21 argp_parse (&test_argp
, argc
, argv
, 0, &i
, NULL
);
25 #define TEST_FUNCTION do_test (argc, argv)
26 #include "../test-skeleton.c"