Install gettext-0.18.1.1.tar.gz
[msysgit.git] / mingw / share / gettext / intl / libgnuintl.h.in
blob4176b44b77f8dc89cbfbc53e200a42bc929d484d
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)
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 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,
17 USA. */
19 #ifndef _LIBINTL_H
20 #define _LIBINTL_H 1
22 #include <locale.h>
23 #if (defined __APPLE__ && defined __MACH__) && @HAVE_NEWLOCALE@
24 # include <xlocale.h>
25 #endif
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
33 in this case. */
34 #if !defined LC_MESSAGES && !(defined __LOCALE_H || (defined _LOCALE_H && defined __sun))
35 # define LC_MESSAGES 1729
36 #endif
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. */
49 #ifdef __DJGPP__
50 # undef gettext
51 #endif
53 #ifdef __cplusplus
54 extern "C" {
55 #endif
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:
70 1. in the executable,
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
73 command line,
74 4. in the dlopen()ed shared libraries, in the order in which they were
75 dlopen()ed.
76 The definition in the C library would override the one in libintl.so if
77 either
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
96 # else
97 # ifdef __cplusplus
98 # define _INTL_REDIRECT_INLINE
99 # else
100 # define _INTL_REDIRECT_MACROS
101 # endif
102 # endif
103 #endif
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
109 #else
110 # define _INTL_ASM(cname)
111 #endif
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)))
118 #else
119 # define _INTL_MAY_RETURN_STRING_ARG(n)
120 #endif
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
124 text). */
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);
132 #else
133 #ifdef _INTL_REDIRECT_MACROS
134 # define gettext libintl_gettext
135 #endif
136 extern char *gettext (const char *__msgid)
137 _INTL_ASM (libintl_gettext)
138 _INTL_MAY_RETURN_STRING_ARG (1);
139 #endif
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);
150 #else
151 #ifdef _INTL_REDIRECT_MACROS
152 # define dgettext libintl_dgettext
153 #endif
154 extern char *dgettext (const char *__domainname, const char *__msgid)
155 _INTL_ASM (libintl_dgettext)
156 _INTL_MAY_RETURN_STRING_ARG (2);
157 #endif
159 /* Look up MSGID in the DOMAINNAME message catalog for the current CATEGORY
160 locale. */
161 #ifdef _INTL_REDIRECT_INLINE
162 extern char *libintl_dcgettext (const char *__domainname, const char *__msgid,
163 int __category)
164 _INTL_MAY_RETURN_STRING_ARG (2);
165 static inline char *dcgettext (const char *__domainname, const char *__msgid,
166 int __category)
168 return libintl_dcgettext (__domainname, __msgid, __category);
170 #else
171 #ifdef _INTL_REDIRECT_MACROS
172 # define dcgettext libintl_dcgettext
173 #endif
174 extern char *dcgettext (const char *__domainname, const char *__msgid,
175 int __category)
176 _INTL_ASM (libintl_dcgettext)
177 _INTL_MAY_RETURN_STRING_ARG (2);
178 #endif
181 /* Similar to `gettext' but select the plural form corresponding to the
182 number N. */
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);
192 #else
193 #ifdef _INTL_REDIRECT_MACROS
194 # define ngettext libintl_ngettext
195 #endif
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);
200 #endif
202 /* Similar to `dgettext' but select the plural form corresponding to the
203 number N. */
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);
213 #else
214 #ifdef _INTL_REDIRECT_MACROS
215 # define dngettext libintl_dngettext
216 #endif
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);
222 #endif
224 /* Similar to `dcgettext' but select the plural form corresponding to the
225 number N. */
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);
237 #else
238 #ifdef _INTL_REDIRECT_MACROS
239 # define dcngettext libintl_dcngettext
240 #endif
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);
246 #endif
249 #ifndef IN_LIBGLOCALE
251 /* Set the current default message catalog to DOMAINNAME.
252 If DOMAINNAME is null, return the current default.
253 If DOMAINNAME is "", reset to the default of "messages". */
254 #ifdef _INTL_REDIRECT_INLINE
255 extern char *libintl_textdomain (const char *__domainname);
256 static inline char *textdomain (const char *__domainname)
258 return libintl_textdomain (__domainname);
260 #else
261 #ifdef _INTL_REDIRECT_MACROS
262 # define textdomain libintl_textdomain
263 #endif
264 extern char *textdomain (const char *__domainname)
265 _INTL_ASM (libintl_textdomain);
266 #endif
268 /* Specify that the DOMAINNAME message catalog will be found
269 in DIRNAME rather than in the system locale data base. */
270 #ifdef _INTL_REDIRECT_INLINE
271 extern char *libintl_bindtextdomain (const char *__domainname,
272 const char *__dirname);
273 static inline char *bindtextdomain (const char *__domainname,
274 const char *__dirname)
276 return libintl_bindtextdomain (__domainname, __dirname);
278 #else
279 #ifdef _INTL_REDIRECT_MACROS
280 # define bindtextdomain libintl_bindtextdomain
281 #endif
282 extern char *bindtextdomain (const char *__domainname, const char *__dirname)
283 _INTL_ASM (libintl_bindtextdomain);
284 #endif
286 /* Specify the character encoding in which the messages from the
287 DOMAINNAME message catalog will be returned. */
288 #ifdef _INTL_REDIRECT_INLINE
289 extern char *libintl_bind_textdomain_codeset (const char *__domainname,
290 const char *__codeset);
291 static inline char *bind_textdomain_codeset (const char *__domainname,
292 const char *__codeset)
294 return libintl_bind_textdomain_codeset (__domainname, __codeset);
296 #else
297 #ifdef _INTL_REDIRECT_MACROS
298 # define bind_textdomain_codeset libintl_bind_textdomain_codeset
299 #endif
300 extern char *bind_textdomain_codeset (const char *__domainname,
301 const char *__codeset)
302 _INTL_ASM (libintl_bind_textdomain_codeset);
303 #endif
305 #endif /* IN_LIBGLOCALE */
308 /* Support for format strings with positions in *printf(), following the
309 POSIX/XSI specification.
310 Note: These replacements for the *printf() functions are visible only
311 in source files that #include <libintl.h> or #include "gettext.h".
312 Packages that use *printf() in source files that don't refer to _()
313 or gettext() but for which the format string could be the return value
314 of _() or gettext() need to add this #include. Oh well. */
316 #if !@HAVE_POSIX_PRINTF@
318 #include <stdio.h>
319 #include <stddef.h>
321 /* Get va_list. */
322 #if (defined __STDC__ && __STDC__) || defined __cplusplus || defined _MSC_VER
323 # include <stdarg.h>
324 #else
325 # include <varargs.h>
326 #endif
328 #if !(defined fprintf && defined _GL_STDIO_H) /* don't override gnulib */
329 #undef fprintf
330 #define fprintf libintl_fprintf
331 extern int fprintf (FILE *, const char *, ...);
332 #endif
333 #if !(defined vfprintf && defined _GL_STDIO_H) /* don't override gnulib */
334 #undef vfprintf
335 #define vfprintf libintl_vfprintf
336 extern int vfprintf (FILE *, const char *, va_list);
337 #endif
339 #if !(defined printf && defined _GL_STDIO_H) /* don't override gnulib */
340 #undef printf
341 #if defined __NetBSD__ || defined __BEOS__ || defined __CYGWIN__ || defined __MINGW32__
342 /* Don't break __attribute__((format(printf,M,N))).
343 This redefinition is only possible because the libc in NetBSD, Cygwin,
344 mingw does not have a function __printf__.
345 Alternatively, we could have done this redirection only when compiling with
346 __GNUC__, together with a symbol redirection:
347 extern int printf (const char *, ...)
348 __asm__ (#__USER_LABEL_PREFIX__ "libintl_printf");
349 But doing it now would introduce a binary incompatibility with already
350 distributed versions of libintl on these systems. */
351 # define libintl_printf __printf__
352 #endif
353 #define printf libintl_printf
354 extern int printf (const char *, ...);
355 #endif
356 #if !(defined vprintf && defined _GL_STDIO_H) /* don't override gnulib */
357 #undef vprintf
358 #define vprintf libintl_vprintf
359 extern int vprintf (const char *, va_list);
360 #endif
362 #if !(defined sprintf && defined _GL_STDIO_H) /* don't override gnulib */
363 #undef sprintf
364 #define sprintf libintl_sprintf
365 extern int sprintf (char *, const char *, ...);
366 #endif
367 #if !(defined vsprintf && defined _GL_STDIO_H) /* don't override gnulib */
368 #undef vsprintf
369 #define vsprintf libintl_vsprintf
370 extern int vsprintf (char *, const char *, va_list);
371 #endif
373 #if @HAVE_SNPRINTF@
375 #if !(defined snprintf && defined _GL_STDIO_H) /* don't override gnulib */
376 #undef snprintf
377 #define snprintf libintl_snprintf
378 extern int snprintf (char *, size_t, const char *, ...);
379 #endif
380 #if !(defined vsnprintf && defined _GL_STDIO_H) /* don't override gnulib */
381 #undef vsnprintf
382 #define vsnprintf libintl_vsnprintf
383 extern int vsnprintf (char *, size_t, const char *, va_list);
384 #endif
386 #endif
388 #if @HAVE_ASPRINTF@
390 #if !(defined asprintf && defined _GL_STDIO_H) /* don't override gnulib */
391 #undef asprintf
392 #define asprintf libintl_asprintf
393 extern int asprintf (char **, const char *, ...);
394 #endif
395 #if !(defined vasprintf && defined _GL_STDIO_H) /* don't override gnulib */
396 #undef vasprintf
397 #define vasprintf libintl_vasprintf
398 extern int vasprintf (char **, const char *, va_list);
399 #endif
401 #endif
403 #if @HAVE_WPRINTF@
405 #undef fwprintf
406 #define fwprintf libintl_fwprintf
407 extern int fwprintf (FILE *, const wchar_t *, ...);
408 #undef vfwprintf
409 #define vfwprintf libintl_vfwprintf
410 extern int vfwprintf (FILE *, const wchar_t *, va_list);
412 #undef wprintf
413 #define wprintf libintl_wprintf
414 extern int wprintf (const wchar_t *, ...);
415 #undef vwprintf
416 #define vwprintf libintl_vwprintf
417 extern int vwprintf (const wchar_t *, va_list);
419 #undef swprintf
420 #define swprintf libintl_swprintf
421 extern int swprintf (wchar_t *, size_t, const wchar_t *, ...);
422 #undef vswprintf
423 #define vswprintf libintl_vswprintf
424 extern int vswprintf (wchar_t *, size_t, const wchar_t *, va_list);
426 #endif
428 #endif
431 /* Support for the locale chosen by the user. */
432 #if (defined __APPLE__ && defined __MACH__) || defined _WIN32 || defined __WIN32__ || defined __CYGWIN__
434 #undef setlocale
435 #define setlocale libintl_setlocale
436 extern char *setlocale (int, const char *);
438 #if @HAVE_NEWLOCALE@
440 #undef newlocale
441 #define newlocale libintl_newlocale
442 extern locale_t newlocale (int, const char *, locale_t);
444 #endif
446 #endif
449 /* Support for relocatable packages. */
451 /* Sets the original and the current installation prefix of the package.
452 Relocation simply replaces a pathname starting with the original prefix
453 by the corresponding pathname with the current prefix instead. Both
454 prefixes should be directory names without trailing slash (i.e. use ""
455 instead of "/"). */
456 #define libintl_set_relocation_prefix libintl_set_relocation_prefix
457 extern void
458 libintl_set_relocation_prefix (const char *orig_prefix,
459 const char *curr_prefix);
462 #ifdef __cplusplus
464 #endif
466 #endif /* libintl.h */