| 53 | static struct flag_definition empty_flags[] = { { NULL, 0 } }; |
| 54 | |
| 55 | static const char *notnull(const char *arg, const char *name) |
| 56 | { |
| 57 | if (!arg) |
| 58 | die("%s required", name); |
| 59 | return arg; |
| 60 | } |
| 61 | |
| 62 | static unsigned int arg_flags(const char *arg, const char *name, |
| 63 | struct flag_definition *defs) |
no test coverage detected