Update.
[glibc.git] / wcsmbs / wchar.h
blobfddb3d626c9bd01bd11eef6986989292b3a265d3
1 /* Copyright (C) 1995, 1996, 1997, 1998 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
4 The GNU C Library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Library General Public License as
6 published by the Free Software Foundation; either version 2 of the
7 License, or (at your option) any later version.
9 The GNU C Library 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 the GNU C Library; see the file COPYING.LIB. If not,
16 write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17 Boston, MA 02111-1307, USA. */
20 * ISO C Standard, Amendment 1, 7.16.4
21 * General wide-string utilities <wchar.h>
24 #ifndef _WCHAR_H
25 #define _WCHAR_H 1
27 #include <features.h>
29 /* Get FILE definition. */
30 #define __need_FILE
31 #include <stdio.h>
33 /* Get size_t, wchar_t, wint_t and NULL from <stddef.h>. */
34 #define __need_size_t
35 #define __need_wchar_t
36 #define __need_wint_t
37 #define __need_NULL
38 #include <stddef.h>
40 /* We try to get wint_t from <stddef.h>, but not all GCC versions define it
41 there. So define it ourselves if it remains undefined. */
42 #ifndef _WINT_T
43 /* Integral type unchanged by default argument promotions that can
44 hold any value corresponding to members of the extended character
45 set, as well as at least one value that does not correspond to any
46 member of the extended character set. */
47 # define _WINT_T
48 typedef unsigned int wint_t;
49 #endif
52 /* Conversion state information. */
53 typedef struct
55 int count; /* Number of bytes needed for the current character. */
56 wint_t value; /* Value so far. */
57 } mbstate_t;
59 #ifndef WCHAR_MIN
60 /* These constants might also be defined in <inttypes.h>. */
61 # define WCHAR_MIN ((wchar_t) 0)
62 # define WCHAR_MAX (~WCHAR_MIN)
63 #endif
65 #ifndef WEOF
66 # define WEOF (0xffffffffu)
67 #endif
69 /* For XPG4 compliance we have to define the stuff from <wctype.h> here
70 as well. */
71 #if defined __USE_XOPEN && !defined __USE_UNIX98
72 # include <wctype.h>
73 #endif
75 /* This incomplete type is defined in <time.h> but needed here because
76 of `wcsftime'. */
77 struct tm;
80 __BEGIN_DECLS
82 /* Copy SRC to DEST. */
83 extern wchar_t *wcscpy __P ((wchar_t *__restrict __dest,
84 __const wchar_t *__restrict __src));
85 /* Copy no more than N wide-characters of SRC to DEST. */
86 extern wchar_t *wcsncpy __P ((wchar_t *__restrict __dest,
87 __const wchar_t *__restrict __src, size_t __n));
89 /* Append SRC onto DEST. */
90 extern wchar_t *wcscat __P ((wchar_t *__restrict __dest,
91 __const wchar_t *__restrict __src));
92 /* Append no more than N wide-characters of SRC onto DEST. */
93 extern wchar_t *wcsncat __P ((wchar_t *__restrict __dest,
94 __const wchar_t *__restrict __src, size_t __n));
96 /* Compare S1 and S2. */
97 extern int wcscmp __P ((__const wchar_t *__s1, __const wchar_t *__s2));
98 /* Compare N wide-characters of S1 and S2. */
99 extern int wcsncmp __P ((__const wchar_t *__s1, __const wchar_t *__s2,
100 size_t __n));
102 #ifdef __USE_GNU
103 /* Compare S1 and S2, ignoring case. */
104 extern int wcscasecmp __P ((__const wchar_t *__s1, __const wchar_t *__s2));
106 /* Compare no more than N chars of S1 and S2, ignoring case. */
107 extern int wcsncasecmp __P ((__const wchar_t *__s1, __const wchar_t *__s2,
108 size_t __n));
110 /* Similar to the two functions above but take the information from
111 the provided locale and not the global locale. */
112 # include <xlocale.h>
114 extern int __wcscasecmp_l __P ((__const wchar_t *__s1, __const wchar_t *__s2,
115 __locale_t __loc));
117 extern int __wcsncasecmp_l __P ((__const wchar_t *__s1, __const wchar_t *__s2,
118 size_t __n, __locale_t __loc));
119 #endif
121 /* Compare S1 and S2, both interpreted as appropriate to the
122 LC_COLLATE category of the current locale. */
123 extern int wcscoll __P ((__const wchar_t *__s1, __const wchar_t *__s2));
124 /* Transform S2 into array pointed to by S1 such that if wcscmp is
125 applied to two transformed strings the result is the as applying
126 `wcscoll' to the original strings. */
127 extern size_t wcsxfrm __P ((wchar_t *__restrict __s1,
128 __const wchar_t *__restrict __s2, size_t __n));
130 #ifdef __USE_GNU
131 /* Similar to the two functions above but take the information from
132 the provided locale and not the global locale. */
134 /* Compare S1 and S2, both interpreted as appropriate to the
135 LC_COLLATE category of the given locale. */
136 extern int __wcscoll_l __P ((__const wchar_t *__s1, __const wchar_t *__s2,
137 __locale_t __loc));
138 /* Transform S2 into array pointed to by S1 such that if wcscmp is
139 applied to two transformed strings the result is the as applying
140 `wcscoll' to the original strings. */
141 extern size_t __wcsxfrm_l __P ((wchar_t *__s1, __const wchar_t *__s2,
142 size_t __n, __locale_t __loc));
144 /* Duplicate S, returning an identical malloc'd string. */
145 extern wchar_t *wcsdup __P ((__const wchar_t *__s));
146 #endif
148 /* Find the first occurrence of WC in WCS. */
149 extern wchar_t *wcschr __P ((__const wchar_t *__wcs, wchar_t __wc));
150 /* Find the last occurrence of WC in WCS. */
151 extern wchar_t *wcsrchr __P ((__const wchar_t *__wcs, wchar_t __wc));
153 /* Return the length of the initial segmet of WCS which
154 consists entirely of wide characters not in REJECT. */
155 extern size_t wcscspn __P ((__const wchar_t *__wcs,
156 __const wchar_t *__reject));
157 /* Return the length of the initial segmet of WCS which
158 consists entirely of wide characters in ACCEPT. */
159 extern size_t wcsspn __P ((__const wchar_t *__wcs, __const wchar_t *__accept));
160 /* Find the first occurrence in WCS of any character in ACCEPT. */
161 extern wchar_t *wcspbrk __P ((__const wchar_t *__wcs,
162 __const wchar_t *__accept));
163 /* Find the first occurrence of NEEDLE in HAYSTACK. */
164 extern wchar_t *wcsstr __P ((__const wchar_t *__haystack,
165 __const wchar_t *__needle));
167 #if defined __USE_XOPEN && !defined __USE_UNIX98
168 /* Another name for `wcsstr' from XPG4. */
169 extern wchar_t *wcswcs __P ((__const wchar_t *__haystack,
170 __const wchar_t *__needle));
171 #endif
173 /* Divide WCS into tokens separated by characters in DELIM. */
174 extern wchar_t *wcstok __P ((wchar_t *__restrict __s,
175 __const wchar_t *__restrict __delim,
176 wchar_t **__restrict __ptr));
178 /* Return the number of wide characters in S. */
179 extern size_t __wcslen __P ((__const wchar_t *__s));
180 extern size_t wcslen __P ((__const wchar_t *__s));
182 #ifdef __USE_GNU
183 /* Return the number of wide characters in S, but at most MAXLEN. */
184 extern size_t wcsnlen __P ((__const wchar_t *__s, size_t __maxlen));
185 #endif
188 /* Search N wide characters of S for C. */
189 extern wchar_t *wmemchr __P ((__const wchar_t *__s, wchar_t __c, size_t __n));
191 /* Compare N wide characters of S1 and S2. */
192 extern int wmemcmp __P ((__const wchar_t *__restrict __s1,
193 __const wchar_t *__restrict __s2, size_t __n));
195 /* Copy N wide characters of SRC to DEST. */
196 extern wchar_t *wmemcpy __P ((wchar_t *__restrict __s1,
197 __const wchar_t *__restrict __s2, size_t __n));
199 /* Copy N wide characters of SRC to DEST, guaranteeing
200 correct behavior for overlapping strings. */
201 extern wchar_t *wmemmove __P ((wchar_t *__s1, __const wchar_t *__s2,
202 size_t __n));
204 /* Set N wide characters of S to C. */
205 extern wchar_t *wmemset __P ((wchar_t *__s, wchar_t __c, size_t __n));
208 /* Determine whether C constitutes a valid (one-byte) multibyte
209 character. */
210 extern wint_t btowc __P ((int __c));
212 /* Determine whether C corresponds to a member of the extended
213 character set whose multibyte representation is a single byte. */
214 extern int wctob __P ((wint_t __c));
216 /* Determine whether PS points to an object representing the initial
217 state. */
218 extern int mbsinit __P ((__const mbstate_t *__ps));
220 /* Write wide character representation of multibyte character pointed
221 to by S to PWC. */
222 extern size_t mbrtowc __P ((wchar_t *__restrict __pwc,
223 __const char *__restrict __s, size_t __n,
224 mbstate_t *__p));
226 /* Write multibyte representation of wide character WC to S. */
227 extern size_t wcrtomb __P ((char *__restrict __s, wchar_t __wc,
228 mbstate_t *__restrict __ps));
230 /* Return number of bytes in multibyte character pointed to by S. */
231 extern size_t __mbrlen __P ((__const char *__restrict __s, size_t __n,
232 mbstate_t *__restrict __ps));
233 extern size_t mbrlen __P ((__const char *__restrict __s, size_t __n,
234 mbstate_t *__restrict __ps));
236 #if defined __OPTIMIZE__ && !defined __OPTIMIZE_SIZE__ \
237 && defined __USE_EXTERN_INLINES
238 /* Define inline function as optimization. */
239 extern __inline size_t mbrlen (__const char *__restrict __s, size_t __n,
240 mbstate_t *__restrict __ps) __THROW
241 { return (__ps != NULL
242 ? mbrtowc (NULL, __s, __n, __ps) : __mbrlen (__s, __n, NULL)); }
243 #endif
245 /* Write wide character representation of multibyte character string
246 SRC to DST. */
247 extern size_t mbsrtowcs __P ((wchar_t *__restrict __dst,
248 __const char **__restrict __src,
249 size_t __len, mbstate_t *__restrict __ps));
251 /* Write multibyte character representation of wide character string
252 SRC to DST. */
253 extern size_t wcsrtombs __P ((char *__restrict __dst,
254 __const wchar_t **__restrict __src,
255 size_t __len, mbstate_t *__restrict __ps));
258 #ifdef __USE_GNU
259 /* Write wide character representation of at most NMC bytes of the
260 multibyte character string SRC to DST. */
261 extern size_t mbsnrtowcs __P ((wchar_t *__restrict __dst,
262 __const char **__restrict __src, size_t __nmc,
263 size_t __len, mbstate_t *__restrict __ps));
265 /* Write multibyte character representation of at most NWC characters
266 from the wide character string SRC to DST. */
267 extern size_t wcsnrtombs __P ((char *__restrict __dst,
268 __const wchar_t **__restrict __src,
269 size_t __nwc, size_t __len,
270 mbstate_t *__restrict __ps));
271 #endif /* use GNU */
274 /* The following functions are extensions found in X/Open CAE. */
275 #ifdef __USE_XOPEN
276 /* Determine number of column positions required for C. */
277 extern int wcwidth __P ((wint_t __c));
279 /* Determine number of column positions required for first N wide
280 characters (or fewer if S ends before this) in S. */
281 extern int wcswidth __P ((__const wchar_t *__s, size_t __n));
282 #endif /* Use X/Open. */
285 /* Convert initial portion of the wide string NPTR to `double'
286 representation. */
287 extern double wcstod __P ((__const wchar_t *__restrict __nptr,
288 wchar_t **__restrict __endptr));
290 #ifdef __USE_GNU
291 /* Likewise for `float' and `long double' sizes of floating-point numbers. */
292 extern float wcstof __P ((__const wchar_t *__restrict __nptr,
293 wchar_t **__restrict __endptr));
294 extern __long_double_t wcstold __P ((__const wchar_t *__restrict __nptr,
295 wchar_t **__restrict __endptr));
296 #endif /* GNU */
299 /* Convert initial portion of wide string NPTR to `long int'
300 representation. */
301 extern long int wcstol __P ((__const wchar_t *__restrict __nptr,
302 wchar_t **__restrict __endptr, int __base));
304 /* Convert initial portion of wide string NPTR to `unsigned long int'
305 representation. */
306 extern unsigned long int wcstoul __P ((__const wchar_t *__restrict __nptr,
307 wchar_t **__restrict __endptr,
308 int __base));
310 #if defined __GNUC__ && defined __USE_GNU
311 /* Convert initial portion of wide string NPTR to `long int'
312 representation. */
313 __extension__
314 extern long long int wcstoq __P ((__const wchar_t *__restrict __nptr,
315 wchar_t **__restrict __endptr, int __base));
317 /* Convert initial portion of wide string NPTR to `unsigned long long int'
318 representation. */
319 __extension__
320 extern unsigned long long int wcstouq __P ((__const wchar_t *__restrict __nptr,
321 wchar_t **__restrict __endptr,
322 int __base));
323 #endif /* GCC and use GNU. */
325 #if defined __USE_ISOC9X || (defined __GNUC__ && defined __USE_GNU)
326 /* Convert initial portion of wide string NPTR to `long int'
327 representation. */
328 __extension__
329 extern long long int wcstoll __P ((__const wchar_t *__restrict __nptr,
330 wchar_t **__restrict __endptr, int __base));
332 /* Convert initial portion of wide string NPTR to `unsigned long long int'
333 representation. */
334 __extension__
335 extern unsigned long long int wcstoull __P ((__const wchar_t *
336 __restrict __nptr,
337 wchar_t **__restrict __endptr,
338 int __base));
339 #endif /* ISO C 9X or GCC and GNU. */
341 #ifdef __USE_GNU
342 /* The concept of one static locale per category is not very well
343 thought out. Many applications will need to process its data using
344 information from several different locales. Another application is
345 the implementation of the internationalization handling in the
346 upcoming ISO C++ standard library. To support this another set of
347 the functions using locale data exist which have an additional
348 argument.
350 Attention: all these functions are *not* standardized in any form.
351 This is a proof-of-concept implementation. */
353 /* Structure for reentrant locale using functions. This is an
354 (almost) opaque type for the user level programs. */
355 # include <xlocale.h>
357 /* Special versions of the functions above which take the locale to
358 use as an additional parameter. */
359 extern long int __wcstol_l __P ((__const wchar_t *__restrict __nptr,
360 wchar_t **__restrict __endptr, int __base,
361 __locale_t __loc));
363 extern unsigned long int __wcstoul_l __P ((__const wchar_t *__restrict __nptr,
364 wchar_t **__restrict __endptr,
365 int __base, __locale_t __loc));
367 __extension__
368 extern long long int __wcstoll_l __P ((__const wchar_t *__restrict __nptr,
369 wchar_t **__restrict __endptr,
370 int __base, __locale_t __loc));
372 __extension__
373 extern unsigned long long int __wcstoull_l __P ((__const wchar_t *__restrict
374 __nptr,
375 wchar_t **__restrict __endptr,
376 int __base,
377 __locale_t __loc));
379 extern double __wcstod_l __P ((__const wchar_t *__restrict __nptr,
380 wchar_t **__restrict __endptr,
381 __locale_t __loc));
383 extern float __wcstof_l __P ((__const wchar_t *__restrict __nptr,
384 wchar_t **__restrict __endptr,
385 __locale_t __loc));
387 extern __long_double_t __wcstold_l __P ((__const wchar_t *__restrict __nptr,
388 wchar_t **__restrict __endptr,
389 __locale_t __loc));
390 #endif /* GNU */
393 /* The internal entry points for `wcstoX' take an extra flag argument
394 saying whether or not to parse locale-dependent number grouping. */
395 extern double __wcstod_internal __P ((__const wchar_t *__restrict __nptr,
396 wchar_t **__restrict __endptr,
397 int __group));
398 extern float __wcstof_internal __P ((__const wchar_t *__restrict __nptr,
399 wchar_t **__restrict __endptr,
400 int __group));
401 extern __long_double_t __wcstold_internal __P ((__const wchar_t *
402 __restrict __nptr,
403 wchar_t **__restrict __endptr,
404 int __group));
406 #ifndef __wcstol_internal_defined
407 extern long int __wcstol_internal __P ((__const wchar_t *__restrict __nptr,
408 wchar_t **__restrict __endptr,
409 int __base, int __group));
410 # define __wcstol_internal_defined 1
411 #endif
412 #ifndef __wcstoul_internal_defined
413 extern unsigned long int __wcstoul_internal __P ((__const wchar_t *
414 __restrict __nptr,
415 wchar_t **
416 __restrict __endptr,
417 int __base, int __group));
418 # define __wcstoul_internal_defined 1
419 #endif
420 #ifndef __wcstoll_internal_defined
421 __extension__
422 extern long long int __wcstoll_internal __P ((__const wchar_t *
423 __restrict __nptr,
424 wchar_t **__restrict __endptr,
425 int __base, int __group));
426 # define __wcstoll_internal_defined 1
427 #endif
428 #ifndef __wcstoull_internal_defined
429 __extension__
430 extern unsigned long long int __wcstoull_internal __P ((__const wchar_t *
431 __restrict __nptr,
432 wchar_t **
433 __restrict __endptr,
434 int __base,
435 int __group));
436 # define __wcstoull_internal_defined 1
437 #endif
440 #if defined __OPTIMIZE__ && __GNUC__ >= 2
441 /* Define inline functions which call the internal entry points. */
443 extern __inline double wcstod (__const wchar_t *__restrict __nptr,
444 wchar_t **__restrict __endptr) __THROW
445 { return __wcstod_internal (__nptr, __endptr, 0); }
446 extern __inline long int wcstol (__const wchar_t *__restrict __nptr,
447 wchar_t **__restrict __endptr,
448 int __base) __THROW
449 { return __wcstol_internal (__nptr, __endptr, __base, 0); }
450 extern __inline unsigned long int wcstoul (__const wchar_t *__restrict __nptr,
451 wchar_t **__restrict __endptr,
452 int __base) __THROW
453 { return __wcstoul_internal (__nptr, __endptr, __base, 0); }
455 # ifdef __USE_GNU
456 extern __inline float wcstof (__const wchar_t *__restrict __nptr,
457 wchar_t **__restrict __endptr) __THROW
458 { return __wcstof_internal (__nptr, __endptr, 0); }
459 extern __inline __long_double_t wcstold (__const wchar_t *__restrict __nptr,
460 wchar_t **__restrict __endptr) __THROW
461 { return __wcstold_internal (__nptr, __endptr, 0); }
464 __extension__
465 extern __inline long long int wcstoq (__const wchar_t *__restrict __nptr,
466 wchar_t **__restrict __endptr,
467 int __base) __THROW
468 { return __wcstoll_internal (__nptr, __endptr, __base, 0); }
469 __extension__
470 extern __inline unsigned long long int wcstouq (__const wchar_t *
471 __restrict __nptr,
472 wchar_t **__restrict __endptr,
473 int __base) __THROW
474 { return __wcstoull_internal (__nptr, __endptr, __base, 0); }
475 # endif /* Use GNU. */
476 #endif /* Optimizing GCC >=2. */
479 #ifdef __USE_GNU
480 /* Copy SRC to DEST, returning the address of the terminating L'\0' in
481 DEST. */
482 extern wchar_t *wcpcpy __P ((wchar_t *__dest, __const wchar_t *__src));
484 /* Copy no more than N characters of SRC to DEST, returning the address of
485 the last character written into DEST. */
486 extern wchar_t *wcpncpy __P ((wchar_t *__dest, __const wchar_t *__src,
487 size_t __n));
488 #endif /* use GNU */
491 /* The X/Open standard demands that most of the functions defined in
492 the <wctype.h> header must also appear here. This is probably
493 because some X/Open members wrote their implementation before the
494 ISO C standard was published and introduced the better solution.
495 We have to provide these definitions for compliance reasons but we
496 do this nonsense only if really necessary. */
497 #if defined __USE_UNIX98 && !defined __USE_GNU
498 # define __need_iswxxx
499 # include <wctype.h>
500 #endif
502 __END_DECLS
504 #endif /* wchar.h */