| 62 | } |
| 63 | |
| 64 | static char *fix_filename(const char *prefix, const char *file) |
| 65 | { |
| 66 | if (!file || !*file) |
| 67 | return NULL; |
| 68 | else |
| 69 | return prefix_filename_except_for_dash(prefix, file); |
| 70 | } |
| 71 | |
| 72 | static int do_get_int_value(const void *value, size_t precision, intmax_t *ret) |
| 73 | { |
no test coverage detected