Added bigprefix1.exp.
[findutils.git] / intl / libgettext.h
blob93eb4403aeb01e200c58595e7d21f47d6fdcf27f
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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */
18 #ifndef _LIBGETTEXT_H
19 #define _LIBGETTEXT_H 1
21 /* NLS can be disabled through the configure --disable-nls option. */
22 #if ENABLE_NLS
24 /* Get declarations of GNU message catalog functions. */
25 # include <libintl.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 ? (char *) (Msgid1) : (char *) (Msgid2))
34 # define dngettext(Domainname, Msgid1, Msgid2, N) \
35 ((N) == 1 ? (char *) (Msgid1) : (char *) (Msgid2))
36 # define dcngettext(Domainname, Msgid1, Msgid2, N, Category) \
37 ((N) == 1 ? (char *) (Msgid1) : (char *) (Msgid2))
38 # define textdomain(Domainname) ((char *) (Domainname))
39 # define bindtextdomain(Domainname, Dirname) ((char *) (Dirname))
40 # define bind_textdomain_codeset(Domainname, Codeset) ((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 */