mirror of
https://github.com/git/git.git
synced 2025-12-12 20:36:24 +01:00
quote_path: give flags parameter to quote_path()
The quote_path() function computes a path (relative to its base directory) and c-quotes the result if necessary. Teach it to take a flags parameter to allow its behaviour to be enriched later. No behaviour change intended. Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
2
quote.h
2
quote.h
@@ -72,7 +72,7 @@ void write_name_quoted_relative(const char *name, const char *prefix,
|
||||
FILE *fp, int terminator);
|
||||
|
||||
/* quote path as relative to the given prefix */
|
||||
char *quote_path(const char *in, const char *prefix, struct strbuf *out);
|
||||
char *quote_path(const char *in, const char *prefix, struct strbuf *out, unsigned flags);
|
||||
|
||||
/* quoting as a string literal for other languages */
|
||||
void perl_quote_buf(struct strbuf *sb, const char *src);
|
||||
|
||||
Reference in New Issue
Block a user