1 /* Written by Paul Eggert <eggert@twinsun.com> */
11 /* Return an unambiguous printable representated, allocated in slot N,
12 for NAME, suitable for diagnostics. */
14 quote_n (int n
, char const *name
)
16 return quotearg_n_style (n
, locale_quoting_style
, name
);
19 /* Return an unambiguous printable representation of NAME, suitable
22 quote (char const *name
)
24 return quote_n (0, name
);