X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=quote.c;h=a418a0f803f91d218b66ae89a1e8615a94ff27bc;hb=2eff14259ea4035dc5f8a18f5998e88dd4da207e;hp=dc5c0a7715e4782024ede6dd90b150f6e71022ee;hpb=8d63d95f297446fe110ea76d350ae15676e2ed54;p=git.git diff --git a/quote.c b/quote.c index dc5c0a771..a418a0f80 100644 --- a/quote.c +++ b/quote.c @@ -349,3 +349,41 @@ void write_name_quoted(const char *prefix, int prefix_len, else goto no_quote; } + +/* quoting as a string literal for other languages */ + +void perl_quote_print(FILE *stream, const char *src) +{ + const char sq = '\''; + const char bq = '\\'; + char c; + + fputc(sq, stream); + while ((c = *src++)) { + if (c == sq || c == bq) + fputc(bq, stream); + fputc(c, stream); + } + fputc(sq, stream); +} + +void python_quote_print(FILE *stream, const char *src) +{ + const char sq = '\''; + const char bq = '\\'; + const char nl = '\n'; + char c; + + fputc(sq, stream); + while ((c = *src++)) { + if (c == nl) { + fputc(bq, stream); + fputc('n', stream); + continue; + } + if (c == sq || c == bq) + fputc(bq, stream); + fputc(c, stream); + } + fputc(sq, stream); +}