Make PHP 5 happy.
[elinks.git] / src / intl / gettext / libgettext.h
blob1b7447ec4bf98c105f446d4b9ae017a99d354d2e
1 /* Convenience header for conditional use of GNU <libintl.h>.
2 Copyright (C) 1995-1998, 2000, 2001 Free Software Foundation, Inc.
4 This program 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 This program 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 this program; if not, write to the Free Software Foundation,
16 Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
18 #ifndef _LIBGETTEXT_H
19 #define _LIBGETTEXT_H 1
21 /* NLS can be disabled through the configure --disable-nls option. */
22 #if CONFIG_NLS
24 /* Get declarations of GNU message catalog functions. */
25 #include "intl/gettext/libgnuintl.h"
27 #else
29 #define gettext(Msgid) (Msgid)
30 #define dgettext(Domainname, Msgid) (Msgid)
31 #define dcgettext(Domainname, Msgid, Category) (Msgid)
32 #define ngettext(Msgid1, Msgid2, N) \
33 ((N) == 1 ? (unsigned char *) (Msgid1) : (unsigned char *) (Msgid2))
34 #define dngettext(Domainname, Msgid1, Msgid2, N) \
35 ((N) == 1 ? (unsigned char *) (Msgid1) : (unsigned char *) (Msgid2))
36 #define dcngettext(Domainname, Msgid1, Msgid2, N, Category) \
37 ((N) == 1 ? (unsigned char *) (Msgid1) : (unsigned char *) (Msgid2))
38 #define textdomain(Domainname) ((unsigned char *) (Domainname))
39 #define bindtextdomain(Domainname, Dirname) ((unsigned char *) (Dirname))
40 #define bind_textdomain_codeset(Domainname, Codeset) ((unsigned char *) (Codeset))
42 #endif
44 /* For automatical extraction of messages sometimes no real
45 translation is needed. Instead the string itself is the result. */
46 #define gettext_noop(Str) (Str)
48 #endif /* _LIBGETTEXT_H */