| 2275 | } |
| 2276 | |
| 2277 | static int parse_count(const char *arg) |
| 2278 | { |
| 2279 | int count; |
| 2280 | |
| 2281 | if (strtol_i(arg, 10, &count) < 0) |
| 2282 | die("'%s': not an integer", arg); |
| 2283 | return count; |
| 2284 | } |
| 2285 | |
| 2286 | static timestamp_t parse_age(const char *arg) |
| 2287 | { |
no test coverage detected