]>
git.saurik.com Git - bison.git/blob - lib/quote.c
1 /* Written by Paul Eggert <eggert@twinsun.com> */
8 # include <stddef.h> /* For the definition of size_t on windows w/MSVC. */
10 #include <sys/types.h>
14 /* Return an unambiguous printable representated, allocated in slot N,
15 for NAME, suitable for diagnostics. */
17 quote_n (int n
, char const *name
)
19 return quotearg_n_style (n
, locale_quoting_style
, name
);
22 /* Return an unambiguous printable representation of NAME, suitable
25 quote (char const *name
)
27 return quote_n (0, name
);