s/can not/cannot/
[coreutils.git] / lib / quote.c
blobfd1b57e924a3129bb0a28654eab656cad9d3755a
1 /* Written by Paul Eggert <eggert@twinsun.com> */
3 #if HAVE_CONFIG_H
4 # include <config.h>
5 #endif
7 #include <sys/types.h>
8 #include <quotearg.h>
9 #include <quote.h>
11 /* Return an unambiguous printable representated, allocated in slot N,
12 for NAME, suitable for diagnostics. */
13 char const *
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
20 for diagnostics. */
21 char const *
22 quote (char const *name)
24 return quote_n (0, name);