intl.h 1.77 KB
Newer Older
Jeff Law committed
1
/* intl.h - internationalization
2
   Copyright (C) 1998-2013 Free Software Foundation, Inc.
Jeff Law committed
3 4 5

   GCC is free software; you can redistribute it and/or modify
   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)
Jeff Law committed
7 8 9 10 11 12 13 14
   any later version.

   GCC is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.

   You should have received a copy of the GNU General Public License
15 16
   along with GCC; see the file COPYING3.  If not see
   <http://www.gnu.org/licenses/>.  */
Jeff Law committed
17

18 19 20
#ifndef GCC_INTL_H
#define GCC_INTL_H

Jeff Law committed
21 22 23 24 25 26 27 28
#ifdef HAVE_LOCALE_H
# include <locale.h>
#endif

#ifndef HAVE_SETLOCALE
# define setlocale(category, locale) (locale)
#endif

29
#ifdef ENABLE_NLS
30
#include <libintl.h>
31 32
extern void gcc_init_libintl (void);
extern size_t gcc_gettext_width (const char *);
33 34 35
#else
/* Stubs.  */
# undef textdomain
Jeff Law committed
36
# define textdomain(domain) (domain)
37
# undef bindtextdomain
Jeff Law committed
38
# define bindtextdomain(domain, directory) (domain)
39
# undef gettext
Jeff Law committed
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)
44

45 46
extern const char *fake_ngettext (const char *singular, const char *plural,
				  unsigned long int n);
47

Jeff Law committed
48 49 50 51 52 53 54
#endif

#ifndef _
# define _(msgid) gettext (msgid)
#endif

#ifndef N_
55
# define N_(msgid) msgid
Jeff Law committed
56
#endif
57

58 59 60 61
#ifndef G_
# define G_(gmsgid) gmsgid
#endif

Paolo Bonzini committed
62 63
extern char *get_spaces (const char *);

64 65
extern const char *open_quote;
extern const char *close_quote;
66 67
extern const char *locale_encoding;
extern bool locale_utf8;
68

69
#endif /* intl.h */