6 /* Help to copy the thing properly quoted for the shell safety.
7 * any single quote is replaced with '\'', and the whole thing
8 * is enclosed in a single quote pair.
10 * For example, if you are passing the result to system() as an
13 * sprintf(cmd, "foobar %s %s", sq_quote(arg0), sq_quote(arg1))
15 * would be appropriate. If the system() is going to call ssh to
16 * run the command on the other side:
18 * sprintf(cmd, "git-diff-tree %s %s", sq_quote(arg0), sq_quote(arg1));
19 * sprintf(rcmd, "ssh %s %s", sq_quote(host), sq_quote(cmd));
21 * Note that the above examples leak memory! Remember to free result from
22 * sq_quote() in a real application.
25 extern char *sq_quote(const char *src
);
27 extern int quote_c_style(const char *name
, char *outbuf
, FILE *outfp
,
29 extern char *unquote_c_style(const char *quoted
, const char **endp
);
31 extern void write_name_quoted(const char *prefix
, const char *name
,
32 int quote
, FILE *out
);