| 1294 | #define USAGE_OPTS_WIDTH 26 |
| 1295 | |
| 1296 | static void usage_padding(FILE *outfile, size_t pos) |
| 1297 | { |
| 1298 | if (pos < USAGE_OPTS_WIDTH) |
| 1299 | fprintf(outfile, "%*s", USAGE_OPTS_WIDTH - (int)pos, ""); |
| 1300 | else |
| 1301 | fprintf(outfile, "\n%*s", USAGE_OPTS_WIDTH, ""); |
| 1302 | } |
| 1303 | |
| 1304 | static const struct option *find_option_by_long_name(const struct option *opts, |
| 1305 | const char *long_name) |
no outgoing calls
no test coverage detected