Home | History | Annotate | Download | only in lib

Lines Matching refs:arg

91    argument ARG (of size ARGSIZE), using O to control quoting.
99 char const *arg, size_t argsize,
104 char *quotearg_alloc (char const *arg, size_t argsize,
107 /* Use storage slot N to return a quoted version of the string ARG.
112 char *quotearg_n (int n, char const *arg);
114 /* Equivalent to quotearg_n (0, ARG). */
115 char *quotearg (char const *arg);
117 /* Use style S and storage slot N to return a quoted version of the string ARG.
118 This is like quotearg_n (N, ARG), except that it uses S with no other
120 char *quotearg_n_style (int n, enum quoting_style s, char const *arg);
123 argument ARG of size ARGSIZE. This is like quotearg_n_style
124 (N, S, ARG), except it can quote null bytes. */
126 char const *arg, size_t argsize);
128 /* Equivalent to quotearg_n_style (0, S, ARG). */
129 char *quotearg_style (enum quoting_style s, char const *arg);
131 /* Like quotearg (ARG), except also quote any instances of CH. */
132 char *quotearg_char (char const *arg, char ch);
134 /* Equivalent to quotearg_char (ARG, ':'). */
135 char *quotearg_colon (char const *arg);