* config/i386/uwin.h: Remove SUBTARGET_PROLOGUE.
[official-gcc.git] / gcc / intl.h
blob3acc511cc07aadfa97d0809e9b55e4d784d931fd
1 /* intl.h - internationalization
2 Copyright 1998, 2001, 2003 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 2, or (at your option)
7 any later version.
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 COPYING. If not, write to the Free
16 Software Foundation, 59 Temple Place - Suite 330, Boston, MA
17 02111-1307, USA. */
19 #ifndef GCC_INTL_H
20 #define GCC_INTL_H
22 #ifdef HAVE_LOCALE_H
23 # include <locale.h>
24 #endif
26 #ifndef HAVE_SETLOCALE
27 # define setlocale(category, locale) (locale)
28 #endif
30 #ifdef USE_INCLUDED_LIBINTL
31 # include <intl/libgnuintl.h>
32 #else
33 # ifdef HAVE_LIBINTL_H
34 # include <libintl.h>
35 # else
36 # undef ENABLE_NLS
37 # endif
38 #endif
40 #ifdef ENABLE_NLS
41 extern void gcc_init_libintl (void);
42 extern size_t gcc_gettext_width (const char *);
43 #else
44 /* Stubs. */
45 # undef textdomain
46 # define textdomain(domain) (domain)
47 # undef bindtextdomain
48 # define bindtextdomain(domain, directory) (domain)
49 # undef gettext
50 # define gettext(msgid) (msgid)
51 # define gcc_init_libintl() /* nothing */
52 # define gcc_gettext_width(s) strlen(s)
53 #endif
55 #ifndef _
56 # define _(msgid) gettext (msgid)
57 #endif
59 #ifndef N_
60 # define N_(msgid) (msgid)
61 #endif
63 #endif /* intl.h */