| 3644 | } |
| 3645 | |
| 3646 | static int opt_height(void *optctx, const char *opt, const char *arg) |
| 3647 | { |
| 3648 | double num; |
| 3649 | int ret = parse_number(opt, arg, OPT_TYPE_INT64, 1, INT_MAX, &num); |
| 3650 | if (ret < 0) |
| 3651 | return ret; |
| 3652 | |
| 3653 | screen_height = num; |
| 3654 | return 0; |
| 3655 | } |
| 3656 | |
| 3657 | static int opt_format(void *optctx, const char *opt, const char *arg) |
| 3658 | { |
nothing calls this directly
no test coverage detected