Lines Matching refs:wchar_t

139 extern wchar_t *wcscpy (wchar_t *__restrict __dest,
140 __const wchar_t *__restrict __src) __THROW;
142 extern wchar_t *wcsncpy (wchar_t *__restrict __dest,
143 __const wchar_t *__restrict __src, size_t __n)
147 extern wchar_t *wcscat (wchar_t *__restrict __dest,
148 __const wchar_t *__restrict __src) __THROW;
150 extern wchar_t *wcsncat (wchar_t *__restrict __dest,
151 __const wchar_t *__restrict __src, size_t __n)
155 extern int wcscmp (__const wchar_t *__s1, __const wchar_t *__s2)
158 extern int wcsncmp (__const wchar_t *__s1, __const wchar_t *__s2, size_t __n)
164 extern int wcscasecmp (__const wchar_t *__s1, __const wchar_t *__s2) __THROW;
167 extern int wcsncasecmp (__const wchar_t *__s1, __const wchar_t *__s2,
174 extern int wcscasecmp_l (__const wchar_t *__s1, __const wchar_t *__s2,
177 extern int wcsncasecmp_l (__const wchar_t *__s1, __const wchar_t *__s2,
184 extern int wcscoll (__const wchar_t *__s1, __const wchar_t *__s2) __THROW;
188 extern size_t wcsxfrm (wchar_t *__restrict __s1,
189 __const wchar_t *__restrict __s2, size_t __n) __THROW;
198 extern int wcscoll_l (__const wchar_t *__s1, __const wchar_t *__s2,
204 extern size_t wcsxfrm_l (wchar_t *__s1, __const wchar_t *__s2,
208 extern wchar_t *wcsdup (__const wchar_t *__s) __THROW __attribute_malloc__;
213 extern wchar_t *wcschr (__const wchar_t *__wcs, wchar_t __wc)
216 extern wchar_t *wcsrchr (__const wchar_t *__wcs, wchar_t __wc)
223 extern wchar_t *wcschrnul (__const wchar_t *__s, wchar_t __wc)
230 extern size_t wcscspn (__const wchar_t *__wcs, __const wchar_t *__reject)
234 extern size_t wcsspn (__const wchar_t *__wcs, __const wchar_t *__accept)
237 extern wchar_t *wcspbrk (__const wchar_t *__wcs, __const wchar_t *__accept)
240 extern wchar_t *wcsstr (__const wchar_t *__haystack, __const wchar_t *__needle)
244 extern wchar_t *wcstok (wchar_t *__restrict __s,
245 __const wchar_t *__restrict __delim,
246 wchar_t **__restrict __ptr) __THROW;
249 extern size_t wcslen (__const wchar_t *__s) __THROW __attribute_pure__;
254 extern wchar_t *wcswcs (__const wchar_t *__haystack, __const wchar_t *__needle)
260 extern size_t wcsnlen (__const wchar_t *__s, size_t __maxlen)
267 extern wchar_t *wmemchr (__const wchar_t *__s, wchar_t __c, size_t __n)
271 extern int wmemcmp (__const wchar_t *__restrict __s1,
272 __const wchar_t *__restrict __s2, size_t __n)
276 extern wchar_t *wmemcpy (wchar_t *__restrict __s1,
277 __const wchar_t *__restrict __s2, size_t __n) __THROW;
281 extern wchar_t *wmemmove (wchar_t *__s1, __const wchar_t *__s2, size_t __n)
285 extern wchar_t *wmemset (wchar_t *__s, wchar_t __c, size_t __n) __THROW;
291 extern wchar_t *wmempcpy (wchar_t *__restrict __s1,
292 __const wchar_t *__restrict __s2, size_t __n)
312 extern size_t mbrtowc (wchar_t *__restrict __pwc,
317 extern size_t wcrtomb (char *__restrict __s, wchar_t __wc,
355 extern size_t mbsrtowcs (wchar_t *__restrict __dst,
362 __const wchar_t **__restrict __src, size_t __len,
370 extern size_t mbsnrtowcs (wchar_t *__restrict __dst,
377 __const wchar_t **__restrict __src,
386 extern int wcwidth (wchar_t __c) __THROW;
390 extern int wcswidth (__const wchar_t *__s, size_t __n) __THROW;
397 extern double wcstod (__const wchar_t *__restrict __nptr,
398 wchar_t **__restrict __endptr) __THROW;
404 extern float wcstof (__const wchar_t *__restrict __nptr,
405 wchar_t **__restrict __endptr) __THROW;
406 extern long double wcstold (__const wchar_t *__restrict __nptr,
407 wchar_t **__restrict __endptr) __THROW;
415 extern long int wcstol (__const wchar_t *__restrict __nptr,
416 wchar_t **__restrict __endptr, int __base) __THROW;
420 extern unsigned long int wcstoul (__const wchar_t *__restrict __nptr,
421 wchar_t **__restrict __endptr, int __base)
430 extern long long int wcstoll (__const wchar_t *__restrict __nptr,
431 wchar_t **__restrict __endptr, int __base)
437 extern unsigned long long int wcstoull (__const wchar_t *__restrict __nptr,
438 wchar_t **__restrict __endptr,
447 extern long long int wcstoq (__const wchar_t *__restrict __nptr,
448 wchar_t **__restrict __endptr, int __base)
454 extern unsigned long long int wcstouq (__const wchar_t *__restrict __nptr,
455 wchar_t **__restrict __endptr,
477 extern long int wcstol_l (__const wchar_t *__restrict __nptr,
478 wchar_t **__restrict __endptr, int __base,
481 extern unsigned long int wcstoul_l (__const wchar_t *__restrict __nptr,
482 wchar_t **__restrict __endptr,
486 extern long long int wcstoll_l (__const wchar_t *__restrict __nptr,
487 wchar_t **__restrict __endptr,
491 extern unsigned long long int wcstoull_l (__const wchar_t *__restrict __nptr,
492 wchar_t **__restrict __endptr,
496 extern double wcstod_l (__const wchar_t *__restrict __nptr,
497 wchar_t **__restrict __endptr, __locale_t __loc)
500 extern float wcstof_l (__const wchar_t *__restrict __nptr,
501 wchar_t **__restrict __endptr, __locale_t __loc)
504 extern long double wcstold_l (__const wchar_t *__restrict __nptr,
505 wchar_t **__restrict __endptr,
513 extern wchar_t *wcpcpy (wchar_t *__dest, __const wchar_t *__src) __THROW;
517 extern wchar_t *wcpncpy (wchar_t *__dest, __const wchar_t *__src, size_t __n)
527 extern __FILE *open_wmemstream (wchar_t **__bufloc, size_t *__sizeloc) __THROW;
542 __const wchar_t *__restrict __format, ...)
548 extern int wprintf (__const wchar_t *__restrict __format, ...)
551 extern int swprintf (wchar_t *__restrict __s, size_t __n,
552 __const wchar_t *__restrict __format, ...)
560 __const wchar_t *__restrict __format,
567 extern int vwprintf (__const wchar_t *__restrict __format,
572 extern int vswprintf (wchar_t *__restrict __s, size_t __n,
573 __const wchar_t *__restrict __format,
583 __const wchar_t *__restrict __format, ...)
589 extern int wscanf (__const wchar_t *__restrict __format, ...)
592 extern int swscanf (__const wchar_t *__restrict __s,
593 __const wchar_t *__restrict __format, ...)
604 __const wchar_t *__restrict __format, ...),
607 extern int __REDIRECT (wscanf, (__const wchar_t *__restrict __format, ...),
610 extern int __REDIRECT (swscanf, (__const wchar_t *__restrict __s,
611 __const wchar_t *__restrict __format, ...),
616 __const wchar_t *__restrict __format, ...);
617 extern int __isoc99_wscanf (__const wchar_t *__restrict __format, ...);
618 extern int __isoc99_swscanf (__const wchar_t *__restrict __s,
619 __const wchar_t *__restrict __format, ...)
637 __const wchar_t *__restrict __format,
644 extern int vwscanf (__const wchar_t *__restrict __format,
648 extern int vswscanf (__const wchar_t *__restrict __s,
649 __const wchar_t *__restrict __format,
658 __const wchar_t *__restrict __format,
661 extern int __REDIRECT (vwscanf, (__const wchar_t *__restrict __format,
664 extern int __REDIRECT (vswscanf, (__const wchar_t *__restrict __s,
665 __const wchar_t *__restrict __format,
670 __const wchar_t *__restrict __format,
672 extern int __isoc99_vwscanf (__const wchar_t *__restrict __format,
674 extern int __isoc99_vswscanf (__const wchar_t *__restrict __s,
675 __const wchar_t *__restrict __format,
706 extern wint_t fputwc (wchar_t __wc, __FILE *__stream);
707 extern wint_t putwc (wchar_t __wc, __FILE *__stream);
713 extern wint_t putwchar (wchar_t __wc);
721 extern wchar_t *fgetws (wchar_t *__restrict __ws, int __n,
728 extern int fputws (__const wchar_t *__restrict __ws,
765 extern wint_t fputwc_unlocked (wchar_t __wc, __FILE *__stream);
774 extern wint_t putwc_unlocked (wchar_t __wc, __FILE *__stream);
775 extern wint_t putwchar_unlocked (wchar_t __wc);
784 extern wchar_t *fgetws_unlocked (wchar_t *__restrict __ws, int __n,
793 extern int fputws_unlocked (__const wchar_t *__restrict __ws,
802 extern size_t wcsftime (wchar_t *__restrict __s, size_t __maxsize,
803 __const wchar_t *__restrict __format,
812 extern size_t wcsftime_l (wchar_t *__restrict __s, size_t __maxsize,
813 __const wchar_t *__restrict __format,