1 /* Header describing internals of libintl library.
2 Copyright (C) 1995-1999, 2000-2005 Free Software Foundation, Inc.
3 Written by Ulrich Drepper <drepper@cygnus.com>, 1995.
5 This program is free software; you can redistribute it and/or modify it
6 under the terms of the GNU Library General Public License as published
7 by the Free Software Foundation; either version 2, or (at your option)
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Library General Public License for more details.
15 You should have received a copy of the GNU Library General Public
16 License along with this program; if not, write to the Free Software
17 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
23 #include <stddef.h> /* Get size_t. */
26 # include "../iconv/gconv_int.h"
34 extern char *__gettext (const char *__msgid
);
35 extern char *__dgettext (const char *__domainname
, const char *__msgid
);
36 extern char *__dcgettext (const char *__domainname
, const char *__msgid
,
38 extern char *__ngettext (const char *__msgid1
, const char *__msgid2
,
39 unsigned long int __n
);
40 extern char *__dngettext (const char *__domainname
,
41 const char *__msgid1
, const char *__msgid2
,
43 extern char *__dcngettext (const char *__domainname
,
44 const char *__msgid1
, const char *__msgid2
,
45 unsigned long int __n
, int __category
);
46 extern char *__dcigettext (const char *__domainname
,
47 const char *__msgid1
, const char *__msgid2
,
48 int __plural
, unsigned long int __n
,
50 extern char *__textdomain (const char *__domainname
);
51 extern char *__bindtextdomain (const char *__domainname
,
52 const char *__dirname
);
53 extern char *__bind_textdomain_codeset (const char *__domainname
,
54 const char *__codeset
);
55 extern void _nl_finddomain_subfreeres (void) attribute_hidden
;
56 extern void _nl_unload_domain (struct loaded_domain
*__domain
)
57 internal_function attribute_hidden
;
59 /* Declare the exported libintl_* functions, in a way that allows us to
60 call them under their real name. */
61 # undef _INTL_REDIRECT_INLINE
62 # undef _INTL_REDIRECT_MACROS
63 # define _INTL_REDIRECT_MACROS
64 # include "libgnuintl.h"
66 extern char *gl_dcigettext (const char *__domainname
,
67 const char *__msgid1
, const char *__msgid2
,
68 int __plural
, unsigned long int __n
,
70 const char *__localename
, const char *__encoding
);
72 extern char *libintl_dcigettext (const char *__domainname
,
73 const char *__msgid1
, const char *__msgid2
,
74 int __plural
, unsigned long int __n
,
81 #include "gmo.h" /* Get nls_uint32. */
83 /* @@ end of prolog @@ */
85 #ifndef internal_function
86 # define internal_function
89 #ifndef attribute_hidden
90 # define attribute_hidden
93 /* Tell the compiler when a conditional or integer expression is
94 almost always true or almost always false. */
95 #ifndef HAVE_BUILTIN_EXPECT
96 # define __builtin_expect(expr, val) (expr)
100 # define W(flag, data) ((flag) ? SWAP (data) : (data))
105 # include <byteswap.h>
106 # define SWAP(i) bswap_32 (i)
108 static inline nls_uint32
112 return (i
<< 24) | ((i
& 0xff00) << 8) | ((i
>> 8) & 0xff00) | (i
>> 24);
117 /* In-memory representation of system dependent string. */
118 struct sysdep_string_desc
120 /* Length of addressed string, including the trailing NUL. */
122 /* Pointer to addressed string. */
126 /* Cache of translated strings after charset conversion.
127 Note: The strings are converted to the target encoding only on an as-needed
129 struct converted_domain
131 /* The target encoding name. */
132 const char *encoding
;
133 /* The descriptor for conversion from the message catalog's encoding to
134 this target encoding. */
142 /* The table of translated strings after charset conversion. */
146 /* The representation of an opened message catalog. */
149 /* Pointer to memory containing the .mo file. */
151 /* 1 if the memory is mmap()ed, 0 if the memory is malloc()ed. */
153 /* Size of mmap()ed memory. */
155 /* 1 if the .mo file uses a different endianness than this machine. */
157 /* Pointer to additional malloc()ed memory. */
160 /* Number of static strings pairs. */
162 /* Pointer to descriptors of original strings in the file. */
163 const struct string_desc
*orig_tab
;
164 /* Pointer to descriptors of translated strings in the file. */
165 const struct string_desc
*trans_tab
;
167 /* Number of system dependent strings pairs. */
168 nls_uint32 n_sysdep_strings
;
169 /* Pointer to descriptors of original sysdep strings. */
170 const struct sysdep_string_desc
*orig_sysdep_tab
;
171 /* Pointer to descriptors of translated sysdep strings. */
172 const struct sysdep_string_desc
*trans_sysdep_tab
;
174 /* Size of hash table. */
175 nls_uint32 hash_size
;
176 /* Pointer to hash table. */
177 const nls_uint32
*hash_tab
;
178 /* 1 if the hash table uses a different endianness than this machine. */
179 int must_swap_hash_tab
;
181 /* Cache of charset conversions of the translated strings. */
182 struct converted_domain
*conversions
;
185 struct expression
*plural
;
186 unsigned long int nplurals
;
189 /* We want to allocate a string at the end of the struct. But ISO C
190 doesn't allow zero sized arrays. */
197 /* A set of settings bound to a message domain. Used to store settings
198 from bindtextdomain() and bind_textdomain_codeset(). */
201 struct binding
*next
;
204 char domainname
[ZERO
];
207 /* A counter which is incremented each time some previous translations
209 This variable is part of the external ABI of the GNU libintl. */
211 # include <glocale/config.h>
212 extern LIBGLOCALE_DLL_EXPORTED
int _nl_msg_cat_cntr
;
214 extern LIBINTL_DLL_EXPORTED
int _nl_msg_cat_cntr
;
218 const char *_nl_language_preferences_default (void);
219 const char *_nl_locale_name_posix (int category
, const char *categoryname
);
220 const char *_nl_locale_name_default (void);
221 const char *_nl_locale_name (int category
, const char *categoryname
);
224 struct loaded_l10nfile
*_nl_find_domain (const char *__dirname
, char *__locale
,
225 const char *__domainname
,
226 struct binding
*__domainbinding
)
228 void _nl_load_domain (struct loaded_l10nfile
*__domain
,
229 struct binding
*__domainbinding
)
233 char *_nl_find_msg (struct loaded_l10nfile
*domain_file
,
234 struct binding
*domainbinding
, const char *encoding
,
239 char *_nl_find_msg (struct loaded_l10nfile
*domain_file
,
240 struct binding
*domainbinding
, const char *msgid
,
241 int convert
, size_t *lengthp
)
245 /* @@ begin of epilog @@ */
247 #endif /* gettextP.h */