sl@0
|
1 |
/*
|
sl@0
|
2 |
* © Portions copyright (c) 2006-2007 Nokia Corporation. All rights reserved.
|
sl@0
|
3 |
* Copyright (c) 1999
|
sl@0
|
4 |
* Silicon Graphics Computer Systems, Inc.
|
sl@0
|
5 |
*
|
sl@0
|
6 |
* Copyright (c) 1999
|
sl@0
|
7 |
* Boris Fomitchev
|
sl@0
|
8 |
*
|
sl@0
|
9 |
* This material is provided "as is", with absolutely no warranty expressed
|
sl@0
|
10 |
* or implied. Any use is at your own risk.
|
sl@0
|
11 |
*
|
sl@0
|
12 |
* Permission to use or copy this software for any purpose is hereby granted
|
sl@0
|
13 |
* without fee, provided the above notices are retained on all copies.
|
sl@0
|
14 |
* Permission to modify the code and to distribute modified code is granted,
|
sl@0
|
15 |
* provided the above notices are retained, and a notice that the code was
|
sl@0
|
16 |
* modified is included with the above copyright notice.
|
sl@0
|
17 |
*
|
sl@0
|
18 |
*/
|
sl@0
|
19 |
|
sl@0
|
20 |
/*
|
sl@0
|
21 |
* It is impossible to write the C++ locale library in terms of locales
|
sl@0
|
22 |
* as defined in the C standard. Instead, we write the C++ locale and I/O
|
sl@0
|
23 |
* library in terms of a low level C-like interface. This file defines
|
sl@0
|
24 |
* that interface.
|
sl@0
|
25 |
*
|
sl@0
|
26 |
* The low-level locale interface can't be written portably; there
|
sl@0
|
27 |
* must be a version of it for each platform that the C++ library
|
sl@0
|
28 |
* is ported to. On many systems this interface may be a thin wrapper
|
sl@0
|
29 |
* for existing functionality.
|
sl@0
|
30 |
*/
|
sl@0
|
31 |
|
sl@0
|
32 |
#ifndef _STLP_C_LOCALE_IMPL_H
|
sl@0
|
33 |
# define _STLP_C_LOCALE_IMPL_H
|
sl@0
|
34 |
|
sl@0
|
35 |
# include <stl/c_locale.h>
|
sl@0
|
36 |
// # include <wchar.h>
|
sl@0
|
37 |
# include <stl/_cwchar.h>
|
sl@0
|
38 |
|
sl@0
|
39 |
#define _Locale_MAX_SIMPLE_NAME 256
|
sl@0
|
40 |
|
sl@0
|
41 |
/*
|
sl@0
|
42 |
* A number: the maximum length of a simple locale name.
|
sl@0
|
43 |
* (i.e. a name like like en_US, as opposed to a name like
|
sl@0
|
44 |
* en_US/de_AT/de_AT/es_MX/en_US/en_US) */
|
sl@0
|
45 |
#define _Locale_MAX_COMPOSITE_NAME 6*(_Locale_MAX_SIMPLE_NAME+3)
|
sl@0
|
46 |
|
sl@0
|
47 |
/*
|
sl@0
|
48 |
* Maximum length of a composite locale.
|
sl@0
|
49 |
*/
|
sl@0
|
50 |
|
sl@0
|
51 |
#ifdef __cplusplus
|
sl@0
|
52 |
_STLP_BEGIN_NAMESPACE
|
sl@0
|
53 |
extern "C" {
|
sl@0
|
54 |
#endif
|
sl@0
|
55 |
|
sl@0
|
56 |
/*
|
sl@0
|
57 |
* Typedefs:
|
sl@0
|
58 |
*/
|
sl@0
|
59 |
|
sl@0
|
60 |
#if defined (__GNUC__) || defined (_KCC) || defined(__ICC)
|
sl@0
|
61 |
typedef unsigned short int _Locale_mask_t;
|
sl@0
|
62 |
#else
|
sl@0
|
63 |
typedef unsigned int _Locale_mask_t;
|
sl@0
|
64 |
#endif
|
sl@0
|
65 |
|
sl@0
|
66 |
void * _Locale_ctype_create(const char *);
|
sl@0
|
67 |
void * _Locale_numeric_create(const char *);
|
sl@0
|
68 |
void * _Locale_time_create(const char *);
|
sl@0
|
69 |
void * _Locale_collate_create(const char *);
|
sl@0
|
70 |
void * _Locale_monetary_create(const char *);
|
sl@0
|
71 |
void * _Locale_messages_create(const char *);
|
sl@0
|
72 |
|
sl@0
|
73 |
/*
|
sl@0
|
74 |
* The char* argument is a simple locale name.
|
sl@0
|
75 |
* These functions return NULL to indicate failure.
|
sl@0
|
76 |
* The char* argument is a simple locale name, which may not
|
sl@0
|
77 |
* be "". These functions return NULL to indicate failure.
|
sl@0
|
78 |
*/
|
sl@0
|
79 |
|
sl@0
|
80 |
const char * _Locale_ctype_default(char * __buf);
|
sl@0
|
81 |
const char * _Locale_numeric_default(char * __buf);
|
sl@0
|
82 |
const char * _Locale_time_default(char * __buf);
|
sl@0
|
83 |
const char * _Locale_collate_default(char * __buf);
|
sl@0
|
84 |
const char * _Locale_monetary_default(char * __buf);
|
sl@0
|
85 |
const char * _Locale_messages_default(char * __buf);
|
sl@0
|
86 |
|
sl@0
|
87 |
/*
|
sl@0
|
88 |
* Returns the name of the user's default locale in each
|
sl@0
|
89 |
* category, as a null-terminated string. A NULL value
|
sl@0
|
90 |
* means the default "C" locale.
|
sl@0
|
91 |
*/
|
sl@0
|
92 |
|
sl@0
|
93 |
char * _Locale_ctype_name(const void *, char *);
|
sl@0
|
94 |
char * _Locale_numeric_name(const void *, char *);
|
sl@0
|
95 |
char * _Locale_time_name(const void *, char *);
|
sl@0
|
96 |
char * _Locale_collate_name(const void *, char *);
|
sl@0
|
97 |
char * _Locale_monetary_name(const void *, char *);
|
sl@0
|
98 |
char * _Locale_messages_name(const void *, char *);
|
sl@0
|
99 |
|
sl@0
|
100 |
/*
|
sl@0
|
101 |
* __buf points to a buffer that can hold at least _Locale_MAX_SIMPLE_NAME
|
sl@0
|
102 |
* characters. These functions store the name, as a null-terminated
|
sl@0
|
103 |
* string, in __buf.
|
sl@0
|
104 |
*/
|
sl@0
|
105 |
|
sl@0
|
106 |
void _Locale_ctype_destroy(void *);
|
sl@0
|
107 |
void _Locale_numeric_destroy(void *);
|
sl@0
|
108 |
void _Locale_time_destroy(void *);
|
sl@0
|
109 |
void _Locale_collate_destroy(void *);
|
sl@0
|
110 |
void _Locale_monetary_destroy(void *);
|
sl@0
|
111 |
void _Locale_messages_destroy(void *);
|
sl@0
|
112 |
|
sl@0
|
113 |
char * _Locale_extract_ctype_name(const char *cname, char *__buf);
|
sl@0
|
114 |
char * _Locale_extract_numeric_name(const char *cname, char *__buf);
|
sl@0
|
115 |
char * _Locale_extract_time_name(const char *cname, char *__buf);
|
sl@0
|
116 |
char * _Locale_extract_collate_name(const char *cname, char *__buf);
|
sl@0
|
117 |
char * _Locale_extract_monetary_name(const char *cname, char *__buf);
|
sl@0
|
118 |
char * _Locale_extract_messages_name(const char *cname, char *__buf);
|
sl@0
|
119 |
|
sl@0
|
120 |
/*
|
sl@0
|
121 |
* cname is a (possibly composite) locale name---i.e. a name that can
|
sl@0
|
122 |
* be passed to setlocale. _buf points to an array large enough to
|
sl@0
|
123 |
* store at least _Locale_MAX_SIMPLE_NAME characters, and each of these
|
sl@0
|
124 |
* functions extracts the name of a single category, stores it in buf
|
sl@0
|
125 |
* as a null-terminated string, and returns buf.
|
sl@0
|
126 |
*/
|
sl@0
|
127 |
|
sl@0
|
128 |
char * _Locale_compose_name(char *__buf,
|
sl@0
|
129 |
const char *__Ctype, const char *__Numeric,
|
sl@0
|
130 |
const char *__Time, const char *__Collate,
|
sl@0
|
131 |
const char *__Monetary, const char *__Messages,
|
sl@0
|
132 |
const char *__DefaultName);
|
sl@0
|
133 |
|
sl@0
|
134 |
/*
|
sl@0
|
135 |
* The inputs to this function are six null-terminated strings: the
|
sl@0
|
136 |
* names of a locale's six categories. Locale names for non-standard
|
sl@0
|
137 |
* categories are taken from __DefaultName.
|
sl@0
|
138 |
* __buf is a pointer to an array large enough to store at least
|
sl@0
|
139 |
* _Locale_MAX_COMPOSITE_NAME characters.
|
sl@0
|
140 |
* This function constructs a (possibly composite) name describing the
|
sl@0
|
141 |
* locale as a whole, stores that name in buf as a null-terminated
|
sl@0
|
142 |
* string, and returns buf.
|
sl@0
|
143 |
*/
|
sl@0
|
144 |
|
sl@0
|
145 |
/*
|
sl@0
|
146 |
* FUNCTIONS THAT USE CTYPE
|
sl@0
|
147 |
*/
|
sl@0
|
148 |
|
sl@0
|
149 |
/*
|
sl@0
|
150 |
* Narrow character functions:
|
sl@0
|
151 |
*/
|
sl@0
|
152 |
|
sl@0
|
153 |
const _Locale_mask_t * _Locale_ctype_table(struct _Locale_ctype *);
|
sl@0
|
154 |
|
sl@0
|
155 |
/*
|
sl@0
|
156 |
* Returns a pointer to the beginning of the ctype table. The table is
|
sl@0
|
157 |
* at least 257 bytes long; if p is the pointer returned by this
|
sl@0
|
158 |
* function, then p[c] is valid if c is EOF or if p is any value of
|
sl@0
|
159 |
* type unsigned char.
|
sl@0
|
160 |
*/
|
sl@0
|
161 |
|
sl@0
|
162 |
int _Locale_toupper(struct _Locale_ctype *, int);
|
sl@0
|
163 |
int _Locale_tolower(struct _Locale_ctype *, int);
|
sl@0
|
164 |
|
sl@0
|
165 |
/*
|
sl@0
|
166 |
* c is either EOF, or an unsigned char value.
|
sl@0
|
167 |
*/
|
sl@0
|
168 |
|
sl@0
|
169 |
# ifndef _STLP_NO_WCHAR_T
|
sl@0
|
170 |
/*
|
sl@0
|
171 |
* Wide character functions:
|
sl@0
|
172 |
*/
|
sl@0
|
173 |
_Locale_mask_t _Locale_wchar_ctype(struct _Locale_ctype *, wint_t,
|
sl@0
|
174 |
_Locale_mask_t);
|
sl@0
|
175 |
wint_t _Locale_wchar_tolower(struct _Locale_ctype *, wint_t);
|
sl@0
|
176 |
wint_t _Locale_wchar_toupper(struct _Locale_ctype *, wint_t);
|
sl@0
|
177 |
# endif
|
sl@0
|
178 |
|
sl@0
|
179 |
# if !defined ( _STLP_NO_MBSTATE_T )
|
sl@0
|
180 |
|
sl@0
|
181 |
/*
|
sl@0
|
182 |
* Multibyte functions:
|
sl@0
|
183 |
*/
|
sl@0
|
184 |
|
sl@0
|
185 |
int _Locale_mb_cur_max (struct _Locale_ctype *);
|
sl@0
|
186 |
/*
|
sl@0
|
187 |
* Returns the number of bytes of the longest allowed multibyte
|
sl@0
|
188 |
* character in the current encoding.
|
sl@0
|
189 |
*/
|
sl@0
|
190 |
|
sl@0
|
191 |
int _Locale_mb_cur_min (struct _Locale_ctype *);
|
sl@0
|
192 |
/*
|
sl@0
|
193 |
* Returns the number of bytes of the shortest allowed multibyte
|
sl@0
|
194 |
* character in the current encoding.
|
sl@0
|
195 |
*/
|
sl@0
|
196 |
|
sl@0
|
197 |
int _Locale_is_stateless (struct _Locale_ctype *);
|
sl@0
|
198 |
/*
|
sl@0
|
199 |
* Returns 1 if the current multibyte encoding is stateless
|
sl@0
|
200 |
* and does not require the use of an mbstate_t value.
|
sl@0
|
201 |
*/
|
sl@0
|
202 |
|
sl@0
|
203 |
# ifndef _STLP_NO_WCHAR_T
|
sl@0
|
204 |
wint_t _Locale_btowc(struct _Locale_ctype *, int);
|
sl@0
|
205 |
int _Locale_wctob(struct _Locale_ctype *, wint_t);
|
sl@0
|
206 |
|
sl@0
|
207 |
/*
|
sl@0
|
208 |
* Just like btowc and wctob, from 4.6.5.1 of the C standard, Normative
|
sl@0
|
209 |
* Addendum 1. (And just like widen/narrow, from clause 22 of the C++
|
sl@0
|
210 |
* standard.)
|
sl@0
|
211 |
*/
|
sl@0
|
212 |
|
sl@0
|
213 |
size_t _Locale_mbtowc(struct _Locale_ctype *,
|
sl@0
|
214 |
wchar_t *,size_t,
|
sl@0
|
215 |
const char *, size_t, int * chars_write,
|
sl@0
|
216 |
mbstate_t *);
|
sl@0
|
217 |
|
sl@0
|
218 |
/*
|
sl@0
|
219 |
* Almost identical to mbrtowc, from 4.6.5.3.2 of NA1. The only
|
sl@0
|
220 |
* important difference is that mbrtowc treats null wide characters
|
sl@0
|
221 |
* as special, and we don't. Specifically: examines the characters
|
sl@0
|
222 |
* in [from, from + n), extracts a single wide character, and stores
|
sl@0
|
223 |
* it in *to. Modifies shift_state if appropriate. The return value,
|
sl@0
|
224 |
* which is always positive, is the number of characters extracted from
|
sl@0
|
225 |
* the input sequence. Return value is (size_t) -1 if there was an
|
sl@0
|
226 |
* encoding error in the input sequence, and (size_t) -2 if
|
sl@0
|
227 |
* [from, from + n) is correct but not complete. None of the pointer
|
sl@0
|
228 |
* arguments may be null pointers.
|
sl@0
|
229 |
*/
|
sl@0
|
230 |
|
sl@0
|
231 |
size_t _Locale_wctomb(struct _Locale_ctype *,
|
sl@0
|
232 |
char *, size_t,
|
sl@0
|
233 |
const wchar_t,
|
sl@0
|
234 |
mbstate_t *);
|
sl@0
|
235 |
|
sl@0
|
236 |
/*
|
sl@0
|
237 |
* Again, very similar to wcrtomb. The differences are that (1) it
|
sl@0
|
238 |
* doesn't treat null characters as special; and (2) it stores at most
|
sl@0
|
239 |
* n characters. Converts c to a multibyte sequence, stores that
|
sl@0
|
240 |
* sequence in the array 'to', and returns the length of the sequence.
|
sl@0
|
241 |
* Modifies shift_state if appropriate. The return value is (size_t) -1
|
sl@0
|
242 |
* if c is not a valid wide character, and (size_t) -2 if the length of
|
sl@0
|
243 |
* the multibyte character sequence is greater than n.
|
sl@0
|
244 |
*/
|
sl@0
|
245 |
# endif
|
sl@0
|
246 |
|
sl@0
|
247 |
size_t _Locale_unshift(struct _Locale_ctype *,
|
sl@0
|
248 |
mbstate_t *,
|
sl@0
|
249 |
char *, size_t, char **);
|
sl@0
|
250 |
|
sl@0
|
251 |
/*
|
sl@0
|
252 |
* Inserts whatever characters are necessary to restore st to an
|
sl@0
|
253 |
* initial shift state. Sets *next to buf + m, where m is the number
|
sl@0
|
254 |
* of characters inserted. (0 <= m <= n.) Returns m to indicate
|
sl@0
|
255 |
* success, (size_t) -1 to indicate error, (size_t) -2 to indicate
|
sl@0
|
256 |
* partial success (more than n characters needed). For success or partial
|
sl@0
|
257 |
* success, sets *next to buf + m.
|
sl@0
|
258 |
*/
|
sl@0
|
259 |
|
sl@0
|
260 |
# endif /* _STLP_NO_MBSTATE_T */
|
sl@0
|
261 |
|
sl@0
|
262 |
/*
|
sl@0
|
263 |
* FUNCTIONS THAT USE COLLATE
|
sl@0
|
264 |
*/
|
sl@0
|
265 |
|
sl@0
|
266 |
int _Locale_strcmp(struct _Locale_collate *,
|
sl@0
|
267 |
const char *, size_t,
|
sl@0
|
268 |
const char *, size_t);
|
sl@0
|
269 |
# ifndef _STLP_NO_WCHAR_T
|
sl@0
|
270 |
int _Locale_strwcmp(struct _Locale_collate *,
|
sl@0
|
271 |
const wchar_t *, size_t,
|
sl@0
|
272 |
const wchar_t *, size_t);
|
sl@0
|
273 |
# endif
|
sl@0
|
274 |
/*
|
sl@0
|
275 |
* Compares the two sequences [s1, s1 + n1) and [s2, s2 + n2). Neither
|
sl@0
|
276 |
* sequence is assumed to be null-terminated, and null characters
|
sl@0
|
277 |
* aren't special. If the two sequences are the same up through
|
sl@0
|
278 |
* min(n1, n2), then the sequence that compares less is whichever one
|
sl@0
|
279 |
* is shorter.
|
sl@0
|
280 |
*/
|
sl@0
|
281 |
|
sl@0
|
282 |
size_t _Locale_strxfrm(struct _Locale_collate *,
|
sl@0
|
283 |
char *, size_t,
|
sl@0
|
284 |
const char *, size_t);
|
sl@0
|
285 |
|
sl@0
|
286 |
# ifndef _STLP_NO_WCHAR_T
|
sl@0
|
287 |
size_t _Locale_strwxfrm(struct _Locale_collate *,
|
sl@0
|
288 |
wchar_t *, size_t,
|
sl@0
|
289 |
const wchar_t *, size_t);
|
sl@0
|
290 |
# endif
|
sl@0
|
291 |
|
sl@0
|
292 |
/*
|
sl@0
|
293 |
* Creates a transformed version of the string [s2, s2 + n2). The
|
sl@0
|
294 |
* string may contain embedded null characters; nulls aren't special.
|
sl@0
|
295 |
* The transformed string begins at s1, and contains at most n1
|
sl@0
|
296 |
* characters. The return value is the length of the transformed
|
sl@0
|
297 |
* string. If the return value is greater than n1 then this is an
|
sl@0
|
298 |
* error condition: it indicates that there wasn't enough space. In
|
sl@0
|
299 |
* that case, the contents of [s1, s1 + n1) is unspecified.
|
sl@0
|
300 |
*/
|
sl@0
|
301 |
|
sl@0
|
302 |
/*
|
sl@0
|
303 |
* FUNCTIONS THAT USE NUMERIC
|
sl@0
|
304 |
*/
|
sl@0
|
305 |
|
sl@0
|
306 |
char _Locale_decimal_point(struct _Locale_numeric *);
|
sl@0
|
307 |
char _Locale_thousands_sep(struct _Locale_numeric *);
|
sl@0
|
308 |
const char * _Locale_grouping(struct _Locale_numeric *);
|
sl@0
|
309 |
|
sl@0
|
310 |
/*
|
sl@0
|
311 |
* Equivalent to the first three fields in struct lconv. (C standard,
|
sl@0
|
312 |
* section 7.4.)
|
sl@0
|
313 |
*/
|
sl@0
|
314 |
|
sl@0
|
315 |
const char * _Locale_true(struct _Locale_numeric *);
|
sl@0
|
316 |
const char * _Locale_false(struct _Locale_numeric *);
|
sl@0
|
317 |
|
sl@0
|
318 |
/*
|
sl@0
|
319 |
* Return "true" and "false" in English locales, and something
|
sl@0
|
320 |
* appropriate in non-English locales.
|
sl@0
|
321 |
*/
|
sl@0
|
322 |
|
sl@0
|
323 |
/*
|
sl@0
|
324 |
* FUNCTIONS THAT USE MONETARY
|
sl@0
|
325 |
*/
|
sl@0
|
326 |
|
sl@0
|
327 |
const char * _Locale_int_curr_symbol(struct _Locale_monetary *);
|
sl@0
|
328 |
const char * _Locale_currency_symbol(struct _Locale_monetary *);
|
sl@0
|
329 |
char _Locale_mon_decimal_point(struct _Locale_monetary *);
|
sl@0
|
330 |
char _Locale_mon_thousands_sep(struct _Locale_monetary *);
|
sl@0
|
331 |
const char * _Locale_mon_grouping(struct _Locale_monetary *);
|
sl@0
|
332 |
const char * _Locale_positive_sign(struct _Locale_monetary *);
|
sl@0
|
333 |
const char * _Locale_negative_sign(struct _Locale_monetary *);
|
sl@0
|
334 |
char _Locale_int_frac_digits(struct _Locale_monetary *);
|
sl@0
|
335 |
char _Locale_frac_digits(struct _Locale_monetary *);
|
sl@0
|
336 |
int _Locale_p_cs_precedes(struct _Locale_monetary *);
|
sl@0
|
337 |
int _Locale_p_sep_by_space(struct _Locale_monetary *);
|
sl@0
|
338 |
int _Locale_p_sign_posn(struct _Locale_monetary *);
|
sl@0
|
339 |
int _Locale_n_cs_precedes(struct _Locale_monetary *);
|
sl@0
|
340 |
int _Locale_n_sep_by_space(struct _Locale_monetary *);
|
sl@0
|
341 |
int _Locale_n_sign_posn(struct _Locale_monetary *);
|
sl@0
|
342 |
|
sl@0
|
343 |
/*
|
sl@0
|
344 |
* Return the obvious fields of struct lconv.
|
sl@0
|
345 |
*/
|
sl@0
|
346 |
|
sl@0
|
347 |
/*
|
sl@0
|
348 |
* FUNCTIONS THAT USE TIME
|
sl@0
|
349 |
*/
|
sl@0
|
350 |
|
sl@0
|
351 |
const char * _Locale_full_monthname(struct _Locale_time *, int);
|
sl@0
|
352 |
const char * _Locale_abbrev_monthname(struct _Locale_time *, int);
|
sl@0
|
353 |
|
sl@0
|
354 |
/*
|
sl@0
|
355 |
* month is in the range [0, 12).
|
sl@0
|
356 |
*/
|
sl@0
|
357 |
|
sl@0
|
358 |
const char * _Locale_full_dayofweek(struct _Locale_time *, int);
|
sl@0
|
359 |
const char * _Locale_abbrev_dayofweek(struct _Locale_time *, int);
|
sl@0
|
360 |
|
sl@0
|
361 |
/*
|
sl@0
|
362 |
* day is in the range [0, 7). Sunday is 0.
|
sl@0
|
363 |
*/
|
sl@0
|
364 |
|
sl@0
|
365 |
const char * _Locale_d_t_fmt(struct _Locale_time *);
|
sl@0
|
366 |
const char * _Locale_d_fmt(struct _Locale_time *);
|
sl@0
|
367 |
const char * _Locale_t_fmt(struct _Locale_time *);
|
sl@0
|
368 |
const char * _Locale_long_d_t_fmt(struct _Locale_time*);
|
sl@0
|
369 |
const char * _Locale_long_d_fmt(struct _Locale_time*);
|
sl@0
|
370 |
|
sl@0
|
371 |
const char * _Locale_am_str(struct _Locale_time *);
|
sl@0
|
372 |
const char * _Locale_pm_str(struct _Locale_time *);
|
sl@0
|
373 |
const char * _Locale_t_fmt_ampm(struct _Locale_time *);
|
sl@0
|
374 |
|
sl@0
|
375 |
|
sl@0
|
376 |
/*
|
sl@0
|
377 |
* FUNCTIONS THAT USE MESSAGES
|
sl@0
|
378 |
*/
|
sl@0
|
379 |
|
sl@0
|
380 |
int _Locale_catopen(struct _Locale_messages*, const char*);
|
sl@0
|
381 |
|
sl@0
|
382 |
/*
|
sl@0
|
383 |
* Very similar to catopen, except that it uses L to determine
|
sl@0
|
384 |
* which catalog to open.
|
sl@0
|
385 |
*/
|
sl@0
|
386 |
|
sl@0
|
387 |
void _Locale_catclose(struct _Locale_messages*, int);
|
sl@0
|
388 |
|
sl@0
|
389 |
/*
|
sl@0
|
390 |
* catalog is a value that was returned by a previous call to
|
sl@0
|
391 |
* _Locale_catopen
|
sl@0
|
392 |
*/
|
sl@0
|
393 |
|
sl@0
|
394 |
const char * _Locale_catgets(struct _Locale_messages *, int,
|
sl@0
|
395 |
int, int,const char *);
|
sl@0
|
396 |
|
sl@0
|
397 |
/*
|
sl@0
|
398 |
* Returns a string, identified by a set index and a message index,
|
sl@0
|
399 |
* from an opened message catalog. Returns default if no such
|
sl@0
|
400 |
* string exists.
|
sl@0
|
401 |
*/
|
sl@0
|
402 |
|
sl@0
|
403 |
# ifdef __cplusplus
|
sl@0
|
404 |
}
|
sl@0
|
405 |
_STLP_END_NAMESPACE
|
sl@0
|
406 |
# endif
|
sl@0
|
407 |
|
sl@0
|
408 |
# endif /* _STLP_C_LOCALE_IMPL_H */
|