Lines Matching full:quoted
28 /* Place into QUOTED a quoted version of ARG suitable for `system'.
30 If QUOTED is null, return the length without any side effects. */
33 quote_system_arg (quoted, arg) in quote_system_arg() argument
34 char *quoted; in quote_system_arg()
40 /* Scan ARG, copying it to QUOTED if QUOTED is not null,
74 if (quoted)
76 quoted[len] = '-';
77 quoted[len + 1] = c;
85 if (quoted)
86 quoted[len] = c;
94 if (quoted)
95 quoted[len] = '\'';
102 if (quoted)
104 quoted[len] = '\'';
105 quoted[len + 1] = '\\';
106 quoted[len + 2] = '\'';
110 if (quoted)
111 quoted[len] = c;
115 if (quoted)
116 quoted[len] = '\'';
121 if (quoted)
122 quoted[len] = c;