GIT 0.99.8f
[git.git] / quote.h
blobea227bb7d44b3a37990ce0d00ab4eea34a30065a
1 #ifndef QUOTE_H
2 #define QUOTE_H
4 #include <stdio.h>
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
11 * argument:
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,
28 int nodq);
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);
33 #endif