From a734d0b10bd0f5554abb3acdf11426040cfc4df0 Mon Sep 17 00:00:00 2001 From: Dmitry Potapov Date: Fri, 7 Mar 2008 05:30:58 +0300 Subject: Make private quote_path() in wt-status.c available as quote_path_relative() Move quote_path() from wt-status.c to quote.c and rename it as quote_path_relative(), because it is a better name for a public function. Also, instead of handcrafted quoting, quote_c_style_counted() is now used, to make its quoting more consistent with the rest of the system, also honoring core.quotepath specified in configuration. Signed-off-by: Dmitry Potapov Signed-off-by: Junio C Hamano --- quote.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'quote.h') diff --git a/quote.h b/quote.h index 4da110ec01..c5eea6f18e 100644 --- a/quote.h +++ b/quote.h @@ -47,6 +47,10 @@ extern void write_name_quoted(const char *name, FILE *, int terminator); extern void write_name_quotedpfx(const char *pfx, size_t pfxlen, const char *name, FILE *, int terminator); +/* quote path as relative to the given prefix */ +char *quote_path_relative(const char *in, int len, + struct strbuf *out, const char *prefix); + /* quoting as a string literal for other languages */ extern void perl_quote_print(FILE *stream, const char *src); extern void python_quote_print(FILE *stream, const char *src); -- cgit v1.2.3