| 655 | } |
| 656 | |
| 657 | const char *repo_common_path_append(const struct repository *repo, |
| 658 | struct strbuf *sb, |
| 659 | const char *fmt, ...) |
| 660 | { |
| 661 | va_list args; |
| 662 | va_start(args, fmt); |
| 663 | repo_common_pathv(repo, sb, fmt, args); |
| 664 | va_end(args); |
| 665 | return sb->buf; |
| 666 | } |
| 667 | |
| 668 | const char *repo_common_path_replace(const struct repository *repo, |
| 669 | struct strbuf *sb, |
no test coverage detected