/* Written by Paul Eggert */ #if HAVE_CONFIG_H # include #endif #if HAVE_STDDEF_H # include /* For the definition of size_t on windows w/MSVC. */ #endif #include #include #include /* Return an unambiguous printable representated, allocated in slot N, for NAME, suitable for diagnostics. */ char const * quote_n (int n, char const *name) { return quotearg_n_style (n, locale_quoting_style, name); } /* Return an unambiguous printable representation of NAME, suitable for diagnostics. */ char const * quote (char const *name) { return quote_n (0, name); }