| 442 | } |
| 443 | |
| 444 | const char *repo_git_path_append(struct repository *repo, |
| 445 | struct strbuf *sb, |
| 446 | const char *fmt, ...) |
| 447 | { |
| 448 | va_list args; |
| 449 | va_start(args, fmt); |
| 450 | repo_git_pathv(repo, NULL, sb, fmt, args); |
| 451 | va_end(args); |
| 452 | return sb->buf; |
| 453 | } |
| 454 | |
| 455 | const char *repo_git_path_replace(struct repository *repo, |
| 456 | struct strbuf *sb, |
no test coverage detected