| 309 | } |
| 310 | |
| 311 | int |
| 312 | argparse_help_cb(struct argparse *this_, const struct argparse_option *option) |
| 313 | { |
| 314 | (void)option; |
| 315 | argparse_usage(this_); |
| 316 | exit(0); |
| 317 | return 0; |
| 318 | } |
| 319 | |
| 320 | #if defined(__cplusplus) |
| 321 | } |
nothing calls this directly
no test coverage detected