1 /* intl.h - internationalization
2 Copyright (C) 1998-2023 Free Software Foundation, Inc.
4 GCC is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation; either version 3, or (at your option)
9 GCC is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with GCC; see the file COPYING3. If not see
16 <http://www.gnu.org/licenses/>. */
25 #ifndef HAVE_SETLOCALE
26 # define setlocale(category, locale) (locale)
31 extern void gcc_init_libintl (void);
32 extern size_t gcc_gettext_width (const char *);
36 # define textdomain(domain) (domain)
37 # undef bindtextdomain
38 # define bindtextdomain(domain, directory) (domain)
40 # define gettext(msgid) (msgid)
41 # define ngettext(singular,plural,n) fake_ngettext (singular, plural, n)
42 # define gcc_init_libintl() /* nothing */
43 # define gcc_gettext_width(s) strlen (s)
45 extern const char *fake_ngettext (const char *singular
, const char *plural
,
50 /* Used to immediately translate the argument. */
52 # define _(msgid) gettext (msgid)
55 /* Used to mark strings that will be translated later. */
57 # define N_(msgid) msgid
60 /* Like N_, but for GCC diagnostic format strings. See ABOUT-GCC-NLS for
63 # define G_(gmsgid) gmsgid
66 extern char *get_spaces (const char *);
68 extern const char *open_quote
;
69 extern const char *close_quote
;
70 extern const char *locale_encoding
;
71 extern bool locale_utf8
;