intl.h 1.82 KB
Newer Older
Jeff Law committed
1
/* intl.h - internationalization
2 3
   Copyright 1998, 2001, 2003, 2004, 2007, 2009, 2010
   Free Software Foundation, Inc.
Jeff Law committed
4 5 6

   GCC is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
7
   the Free Software Foundation; either version 3, or (at your option)
Jeff Law committed
8 9 10 11 12 13 14 15
   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
16 17
   along with GCC; see the file COPYING3.  If not see
   <http://www.gnu.org/licenses/>.  */
Jeff Law committed
18

19 20 21
#ifndef GCC_INTL_H
#define GCC_INTL_H

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

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

30
#ifdef ENABLE_NLS
31
#include <libintl.h>
32 33
extern void gcc_init_libintl (void);
extern size_t gcc_gettext_width (const char *);
34 35 36
#else
/* Stubs.  */
# undef textdomain
Jeff Law committed
37
# define textdomain(domain) (domain)
38
# undef bindtextdomain
Jeff Law committed
39
# define bindtextdomain(domain, directory) (domain)
40
# undef gettext
Jeff Law committed
41
# define gettext(msgid) (msgid)
42
# define ngettext(singular,plural,n) fake_ngettext(singular,plural,n)
43
# define gcc_init_libintl()	/* nothing */
44
# define gcc_gettext_width(s) strlen(s)
45 46 47 48

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

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

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

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

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

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

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

70
#endif /* intl.h */