| 258 | } |
| 259 | |
| 260 | char *absolute_pathdup(const char *path) |
| 261 | { |
| 262 | struct strbuf sb = STRBUF_INIT; |
| 263 | strbuf_add_absolute_path(&sb, path); |
| 264 | return strbuf_detach(&sb, NULL); |
| 265 | } |
| 266 | |
| 267 | char *prefix_filename(const char *pfx, const char *arg) |
| 268 | { |
no test coverage detected