1 /* Message catalogs for internationalization.
2 Copyright (C) 1995-1997, 2000-2010 Free Software Foundation, Inc.
4 This program is free software; you can redistribute it and/or modify it
5 under the terms of the GNU Library General Public License as published
6 by the Free Software Foundation; either version 2, or (at your option)
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 GNU
12 Library General Public License for more details.
14 You should have received a copy of the GNU Library General Public
15 License along with this program; if not, write to the Free Software
16 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
23 #if (defined __APPLE__ && defined __MACH__) && 0
27 /* The LC_MESSAGES locale category is the category used by the functions
28 gettext() and dgettext(). It is specified in POSIX, but not in ANSI C.
29 On systems that don't define it, use an arbitrary value instead.
30 On Solaris, <locale.h> defines __LOCALE_H (or _LOCALE_H in Solaris 2.5)
31 then includes <libintl.h> (i.e. this file!) and then only defines
32 LC_MESSAGES. To avoid a redefinition warning, don't define LC_MESSAGES
34 #if !defined LC_MESSAGES && !(defined __LOCALE_H || (defined _LOCALE_H && defined __sun))
35 # define LC_MESSAGES 1729
38 /* We define an additional symbol to signal that we use the GNU
39 implementation of gettext. */
40 #define __USE_GNU_GETTEXT 1
42 /* Provide information about the supported file formats. Returns the
43 maximum minor revision number supported for a given major revision. */
44 #define __GNU_GETTEXT_SUPPORTED_REVISION(major) \
45 ((major) == 0 || (major) == 1 ? 1 : -1)
47 /* Resolve a platform specific conflict on DJGPP. GNU gettext takes
48 precedence over _conio_gettext. */
58 /* Version number: (major<<16) + (minor<<8) + subminor */
59 #define LIBINTL_VERSION 0x001201
60 extern int libintl_version
;
63 /* We redirect the functions to those prefixed with "libintl_". This is
64 necessary, because some systems define gettext/textdomain/... in the C
65 library (namely, Solaris 2.4 and newer, and GNU libc 2.0 and newer).
66 If we used the unprefixed names, there would be cases where the
67 definition in the C library would override the one in the libintl.so
68 shared library. Recall that on ELF systems, the symbols are looked
69 up in the following order:
71 2. in the shared libraries specified on the link command line, in order,
72 3. in the dependencies of the shared libraries specified on the link
74 4. in the dlopen()ed shared libraries, in the order in which they were
76 The definition in the C library would override the one in libintl.so if
78 * -lc is given on the link command line and -lintl isn't, or
79 * -lc is given on the link command line before -lintl, or
80 * libintl.so is a dependency of a dlopen()ed shared library but not
81 linked to the executable at link time.
82 Since Solaris gettext() behaves differently than GNU gettext(), this
83 would be unacceptable.
85 The redirection happens by default through macros in C, so that &gettext
86 is independent of the compilation unit, but through inline functions in
87 C++, in order not to interfere with the name mangling of class fields or
88 class methods called 'gettext'. */
90 /* The user can define _INTL_REDIRECT_INLINE or _INTL_REDIRECT_MACROS.
91 If he doesn't, we choose the method. A third possible method is
92 _INTL_REDIRECT_ASM, supported only by GCC. */
93 #if !(defined _INTL_REDIRECT_INLINE || defined _INTL_REDIRECT_MACROS)
94 # if defined __GNUC__ && __GNUC__ >= 2 && !(defined __APPLE_CC__ && __APPLE_CC__ > 1) && !defined __MINGW32__ && !(__GNUC__ == 2 && defined _AIX) && (defined __STDC__ || defined __cplusplus)
95 # define _INTL_REDIRECT_ASM
98 # define _INTL_REDIRECT_INLINE
100 # define _INTL_REDIRECT_MACROS
104 /* Auxiliary macros. */
105 #ifdef _INTL_REDIRECT_ASM
106 # define _INTL_ASM(cname) __asm__ (_INTL_ASMNAME (__USER_LABEL_PREFIX__, #cname))
107 # define _INTL_ASMNAME(prefix,cnamestring) _INTL_STRINGIFY (prefix) cnamestring
108 # define _INTL_STRINGIFY(prefix) #prefix
110 # define _INTL_ASM(cname)
113 /* _INTL_MAY_RETURN_STRING_ARG(n) declares that the given function may return
114 its n-th argument literally. This enables GCC to warn for example about
115 printf (gettext ("foo %y")). */
116 #if defined __GNUC__ && __GNUC__ >= 3 && !(defined __APPLE_CC__ && __APPLE_CC__ > 1 && defined __cplusplus)
117 # define _INTL_MAY_RETURN_STRING_ARG(n) __attribute__ ((__format_arg__ (n)))
119 # define _INTL_MAY_RETURN_STRING_ARG(n)
122 /* Look up MSGID in the current default message catalog for the current
123 LC_MESSAGES locale. If not found, returns MSGID itself (the default
125 #ifdef _INTL_REDIRECT_INLINE
126 extern char *libintl_gettext (const char *__msgid
)
127 _INTL_MAY_RETURN_STRING_ARG (1);
128 static inline char *gettext (const char *__msgid
)
130 return libintl_gettext (__msgid
);
133 #ifdef _INTL_REDIRECT_MACROS
134 # define gettext libintl_gettext
136 extern char *gettext (const char *__msgid
)
137 _INTL_ASM (libintl_gettext
)
138 _INTL_MAY_RETURN_STRING_ARG (1);
141 /* Look up MSGID in the DOMAINNAME message catalog for the current
142 LC_MESSAGES locale. */
143 #ifdef _INTL_REDIRECT_INLINE
144 extern char *libintl_dgettext (const char *__domainname
, const char *__msgid
)
145 _INTL_MAY_RETURN_STRING_ARG (2);
146 static inline char *dgettext (const char *__domainname
, const char *__msgid
)
148 return libintl_dgettext (__domainname
, __msgid
);
151 #ifdef _INTL_REDIRECT_MACROS
152 # define dgettext libintl_dgettext
154 extern char *dgettext (const char *__domainname
, const char *__msgid
)
155 _INTL_ASM (libintl_dgettext
)
156 _INTL_MAY_RETURN_STRING_ARG (2);
159 /* Look up MSGID in the DOMAINNAME message catalog for the current CATEGORY
161 #ifdef _INTL_REDIRECT_INLINE
162 extern char *libintl_dcgettext (const char *__domainname
, const char *__msgid
,
164 _INTL_MAY_RETURN_STRING_ARG (2);
165 static inline char *dcgettext (const char *__domainname
, const char *__msgid
,
168 return libintl_dcgettext (__domainname
, __msgid
, __category
);
171 #ifdef _INTL_REDIRECT_MACROS
172 # define dcgettext libintl_dcgettext
174 extern char *dcgettext (const char *__domainname
, const char *__msgid
,
176 _INTL_ASM (libintl_dcgettext
)
177 _INTL_MAY_RETURN_STRING_ARG (2);
181 /* Similar to `gettext' but select the plural form corresponding to the
183 #ifdef _INTL_REDIRECT_INLINE
184 extern char *libintl_ngettext (const char *__msgid1
, const char *__msgid2
,
185 unsigned long int __n
)
186 _INTL_MAY_RETURN_STRING_ARG (1) _INTL_MAY_RETURN_STRING_ARG (2);
187 static inline char *ngettext (const char *__msgid1
, const char *__msgid2
,
188 unsigned long int __n
)
190 return libintl_ngettext (__msgid1
, __msgid2
, __n
);
193 #ifdef _INTL_REDIRECT_MACROS
194 # define ngettext libintl_ngettext
196 extern char *ngettext (const char *__msgid1
, const char *__msgid2
,
197 unsigned long int __n
)
198 _INTL_ASM (libintl_ngettext
)
199 _INTL_MAY_RETURN_STRING_ARG (1) _INTL_MAY_RETURN_STRING_ARG (2);
202 /* Similar to `dgettext' but select the plural form corresponding to the
204 #ifdef _INTL_REDIRECT_INLINE
205 extern char *libintl_dngettext (const char *__domainname
, const char *__msgid1
,
206 const char *__msgid2
, unsigned long int __n
)
207 _INTL_MAY_RETURN_STRING_ARG (2) _INTL_MAY_RETURN_STRING_ARG (3);
208 static inline char *dngettext (const char *__domainname
, const char *__msgid1
,
209 const char *__msgid2
, unsigned long int __n
)
211 return libintl_dngettext (__domainname
, __msgid1
, __msgid2
, __n
);
214 #ifdef _INTL_REDIRECT_MACROS
215 # define dngettext libintl_dngettext
217 extern char *dngettext (const char *__domainname
,
218 const char *__msgid1
, const char *__msgid2
,
219 unsigned long int __n
)
220 _INTL_ASM (libintl_dngettext
)
221 _INTL_MAY_RETURN_STRING_ARG (2) _INTL_MAY_RETURN_STRING_ARG (3);
224 /* Similar to `dcgettext' but select the plural form corresponding to the
226 #ifdef _INTL_REDIRECT_INLINE
227 extern char *libintl_dcngettext (const char *__domainname
,
228 const char *__msgid1
, const char *__msgid2
,
229 unsigned long int __n
, int __category
)
230 _INTL_MAY_RETURN_STRING_ARG (2) _INTL_MAY_RETURN_STRING_ARG (3);
231 static inline char *dcngettext (const char *__domainname
,
232 const char *__msgid1
, const char *__msgid2
,
233 unsigned long int __n
, int __category
)
235 return libintl_dcngettext (__domainname
, __msgid1
, __msgid2
, __n
, __category
);
238 #ifdef _INTL_REDIRECT_MACROS
239 # define dcngettext libintl_dcngettext
241 extern char *dcngettext (const char *__domainname
,
242 const char *__msgid1
, const char *__msgid2
,
243 unsigned long int __n
, int __category
)
244 _INTL_ASM (libintl_dcngettext
)
245 _INTL_MAY_RETURN_STRING_ARG (2) _INTL_MAY_RETURN_STRING_ARG (3);
250 /* Set the current default message catalog to DOMAINNAME.
251 If DOMAINNAME is null, return the current default.
252 If DOMAINNAME is "", reset to the default of "messages". */
253 #ifdef _INTL_REDIRECT_INLINE
254 extern char *libintl_textdomain (const char *__domainname
);
255 static inline char *textdomain (const char *__domainname
)
257 return libintl_textdomain (__domainname
);
260 #ifdef _INTL_REDIRECT_MACROS
261 # define textdomain libintl_textdomain
263 extern char *textdomain (const char *__domainname
)
264 _INTL_ASM (libintl_textdomain
);
267 /* Specify that the DOMAINNAME message catalog will be found
268 in DIRNAME rather than in the system locale data base. */
269 #ifdef _INTL_REDIRECT_INLINE
270 extern char *libintl_bindtextdomain (const char *__domainname
,
271 const char *__dirname
);
272 static inline char *bindtextdomain (const char *__domainname
,
273 const char *__dirname
)
275 return libintl_bindtextdomain (__domainname
, __dirname
);
278 #ifdef _INTL_REDIRECT_MACROS
279 # define bindtextdomain libintl_bindtextdomain
281 extern char *bindtextdomain (const char *__domainname
, const char *__dirname
)
282 _INTL_ASM (libintl_bindtextdomain
);
285 /* Specify the character encoding in which the messages from the
286 DOMAINNAME message catalog will be returned. */
287 #ifdef _INTL_REDIRECT_INLINE
288 extern char *libintl_bind_textdomain_codeset (const char *__domainname
,
289 const char *__codeset
);
290 static inline char *bind_textdomain_codeset (const char *__domainname
,
291 const char *__codeset
)
293 return libintl_bind_textdomain_codeset (__domainname
, __codeset
);
296 #ifdef _INTL_REDIRECT_MACROS
297 # define bind_textdomain_codeset libintl_bind_textdomain_codeset
299 extern char *bind_textdomain_codeset (const char *__domainname
,
300 const char *__codeset
)
301 _INTL_ASM (libintl_bind_textdomain_codeset
);
306 /* Support for format strings with positions in *printf(), following the
307 POSIX/XSI specification.
308 Note: These replacements for the *printf() functions are visible only
309 in source files that #include <libintl.h> or #include "gettext.h".
310 Packages that use *printf() in source files that don't refer to _()
311 or gettext() but for which the format string could be the return value
312 of _() or gettext() need to add this #include. Oh well. */
320 #if (defined __STDC__ && __STDC__) || defined __cplusplus || defined _MSC_VER
323 # include <varargs.h>
326 #if !(defined fprintf && defined _GL_STDIO_H) /* don't override gnulib */
328 #define fprintf libintl_fprintf
329 extern int fprintf (FILE *, const char *, ...);
331 #if !(defined vfprintf && defined _GL_STDIO_H) /* don't override gnulib */
333 #define vfprintf libintl_vfprintf
334 extern int vfprintf (FILE *, const char *, va_list);
337 #if !(defined printf && defined _GL_STDIO_H) /* don't override gnulib */
339 #if defined __NetBSD__ || defined __BEOS__ || defined __CYGWIN__ || defined __MINGW32__
340 /* Don't break __attribute__((format(printf,M,N))).
341 This redefinition is only possible because the libc in NetBSD, Cygwin,
342 mingw does not have a function __printf__.
343 Alternatively, we could have done this redirection only when compiling with
344 __GNUC__, together with a symbol redirection:
345 extern int printf (const char *, ...)
346 __asm__ (#__USER_LABEL_PREFIX__ "libintl_printf");
347 But doing it now would introduce a binary incompatibility with already
348 distributed versions of libintl on these systems. */
349 # define libintl_printf __printf__
351 #define printf libintl_printf
352 extern int printf (const char *, ...);
354 #if !(defined vprintf && defined _GL_STDIO_H) /* don't override gnulib */
356 #define vprintf libintl_vprintf
357 extern int vprintf (const char *, va_list);
360 #if !(defined sprintf && defined _GL_STDIO_H) /* don't override gnulib */
362 #define sprintf libintl_sprintf
363 extern int sprintf (char *, const char *, ...);
365 #if !(defined vsprintf && defined _GL_STDIO_H) /* don't override gnulib */
367 #define vsprintf libintl_vsprintf
368 extern int vsprintf (char *, const char *, va_list);
373 #if !(defined snprintf && defined _GL_STDIO_H) /* don't override gnulib */
375 #define snprintf libintl_snprintf
376 extern int snprintf (char *, size_t, const char *, ...);
378 #if !(defined vsnprintf && defined _GL_STDIO_H) /* don't override gnulib */
380 #define vsnprintf libintl_vsnprintf
381 extern int vsnprintf (char *, size_t, const char *, va_list);
388 #if !(defined asprintf && defined _GL_STDIO_H) /* don't override gnulib */
390 #define asprintf libintl_asprintf
391 extern int asprintf (char **, const char *, ...);
393 #if !(defined vasprintf && defined _GL_STDIO_H) /* don't override gnulib */
395 #define vasprintf libintl_vasprintf
396 extern int vasprintf (char **, const char *, va_list);
404 #define fwprintf libintl_fwprintf
405 extern int fwprintf (FILE *, const wchar_t *, ...);
407 #define vfwprintf libintl_vfwprintf
408 extern int vfwprintf (FILE *, const wchar_t *, va_list);
411 #define wprintf libintl_wprintf
412 extern int wprintf (const wchar_t *, ...);
414 #define vwprintf libintl_vwprintf
415 extern int vwprintf (const wchar_t *, va_list);
418 #define swprintf libintl_swprintf
419 extern int swprintf (wchar_t *, size_t, const wchar_t *, ...);
421 #define vswprintf libintl_vswprintf
422 extern int vswprintf (wchar_t *, size_t, const wchar_t *, va_list);
429 /* Support for the locale chosen by the user. */
430 #if (defined __APPLE__ && defined __MACH__) || defined _WIN32 || defined __WIN32__ || defined __CYGWIN__
433 #define setlocale libintl_setlocale
434 extern char *setlocale (int, const char *);
439 #define newlocale libintl_newlocale
440 extern locale_t
newlocale (int, const char *, locale_t
);
447 /* Support for relocatable packages. */
449 /* Sets the original and the current installation prefix of the package.
450 Relocation simply replaces a pathname starting with the original prefix
451 by the corresponding pathname with the current prefix instead. Both
452 prefixes should be directory names without trailing slash (i.e. use ""
454 #define libintl_set_relocation_prefix libintl_set_relocation_prefix
456 libintl_set_relocation_prefix (const char *orig_prefix
,
457 const char *curr_prefix
);
464 #endif /* libintl.h */