Home | History | Annotate | Download | only in include

Lines Matching refs:wchar_t

38 int fwprintf(FILE* restrict stream, const wchar_t* restrict format, ...);
39 int fwscanf(FILE* restrict stream, const wchar_t* restrict format, ...);
40 int swprintf(wchar_t* restrict s, size_t n, const wchar_t* restrict format, ...);
41 int swscanf(const wchar_t* restrict s, const wchar_t* restrict format, ...);
42 int vfwprintf(FILE* restrict stream, const wchar_t* restrict format, va_list arg);
43 int vfwscanf(FILE* restrict stream, const wchar_t* restrict format, va_list arg); // C99
44 int vswprintf(wchar_t* restrict s, size_t n, const wchar_t* restrict format, va_list arg);
45 int vswscanf(const wchar_t* restrict s, const wchar_t* restrict format, va_list arg); // C99
46 int vwprintf(const wchar_t* restrict format, va_list arg);
47 int vwscanf(const wchar_t* restrict format, va_list arg); // C99
48 int wprintf(const wchar_t* restrict format, ...);
49 int wscanf(const wchar_t* restrict format, ...);
51 wchar_t* fgetws(wchar_t* restrict s, int n, FILE* restrict stream);
52 wint_t fputwc(wchar_t c, FILE* stream);
53 int fputws(const wchar_t* restrict s, FILE* restrict stream);
57 wint_t putwc(wchar_t c, FILE* stream);
58 wint_t putwchar(wchar_t c);
60 double wcstod(const wchar_t* restrict nptr, wchar_t** restrict endptr);
61 float wcstof(const wchar_t* restrict nptr, wchar_t** restrict endptr); // C99
62 long double wcstold(const wchar_t* restrict nptr, wchar_t** restrict endptr); // C99
63 long wcstol(const wchar_t* restrict nptr, wchar_t** restrict endptr, int base);
64 long long wcstoll(const wchar_t* restrict nptr, wchar_t** restrict endptr, int base); // C99
65 unsigned long wcstoul(const wchar_t* restrict nptr, wchar_t** restrict endptr, int base);
66 unsigned long long wcstoull(const wchar_t* restrict nptr, wchar_t** restrict endptr, int base); // C99
67 wchar_t* wcscpy(wchar_t* restrict s1, const wchar_t* restrict s2);
68 wchar_t* wcsncpy(wchar_t* restrict s1, const wchar_t* restrict s2, size_t n);
69 wchar_t* wcscat(wchar_t* restrict s1, const wchar_t* restrict s2);
70 wchar_t* wcsncat(wchar_t* restrict s1, const wchar_t* restrict s2, size_t n);
71 int wcscmp(const wchar_t* s1, const wchar_t* s2);
72 int wcscoll(const wchar_t* s1, const wchar_t* s2);
73 int wcsncmp(const wchar_t* s1, const wchar_t* s2, size_t n);
74 size_t wcsxfrm(wchar_t* restrict s1, const wchar_t* restrict s2, size_t n);
75 const wchar_t* wcschr(const wchar_t* s, wchar_t c);
76 wchar_t* wcschr( wchar_t* s, wchar_t c);
77 size_t wcscspn(const wchar_t* s1, const wchar_t* s2);
78 size_t wcslen(const wchar_t* s);
79 const wchar_t* wcspbrk(const wchar_t* s1, const wchar_t* s2);
80 wchar_t* wcspbrk( wchar_t* s1, const wchar_t* s2);
81 const wchar_t* wcsrchr(const wchar_t* s, wchar_t c);
82 wchar_t* wcsrchr( wchar_t* s, wchar_t c);
83 size_t wcsspn(const wchar_t* s1, const wchar_t* s2);
84 const wchar_t* wcsstr(const wchar_t* s1, const wchar_t* s2);
85 wchar_t* wcsstr( wchar_t* s1, const wchar_t* s2);
86 wchar_t* wcstok(wchar_t* restrict s1, const wchar_t* restrict s2, wchar_t** restrict ptr);
87 const wchar_t* wmemchr(const wchar_t* s, wchar_t c, size_t n);
88 wchar_t* wmemchr( wchar_t* s, wchar_t c, size_t n);
89 int wmemcmp(wchar_t* restrict s1, const wchar_t* restrict s2, size_t n);
90 wchar_t* wmemcpy(wchar_t* restrict s1, const wchar_t* restrict s2, size_t n);
91 wchar_t* wmemmove(wchar_t* s1, const wchar_t* s2, size_t n);
92 wchar_t* wmemset(wchar_t* s, wchar_t c, size_t n);
93 size_t wcsftime(wchar_t* restrict s, size_t maxsize, const wchar_t* restrict format,
99 size_t mbrtowc(wchar_t* restrict pwc, const char* restrict s, size_t n, mbstate_t* restrict ps);
100 size_t wcrtomb(char* restrict s, wchar_t wc, mbstate_t* restrict ps);
101 size_t mbsrtowcs(wchar_t* restrict dst, const char** restrict src, size_t len,
103 size_t wcsrtombs(char* restrict dst, const wchar_t** restrict src, size_t len,
137 wchar_t* __libcpp_wcschr(const wchar_t* __s, wchar_t __c) {return (wchar_t*)wcschr(__s, __c);}
139 const wchar_t* wcschr(const wchar_t* __s, wchar_t __c) {return __libcpp_wcschr(__s, __c);}
141 wchar_t* wcschr( wchar_t* __s, wchar_t __c) {return __libcpp_wcschr(__s, __c);}
144 wchar_t* __libcpp_wcspbrk(const wchar_t* __s1, const wchar_t* __s2) {return (wchar_t*)wcspbrk(__s1, __s2);}
146 const wchar_t* wcspbrk(const wchar_t* __s1, const wchar_t* __s2) {return __libcpp_wcspbrk(__s1, __s2);}
148 wchar_t* wcspbrk( wchar_t* __s1, const wchar_t* __s2) {return __libcpp_wcspbrk(__s1, __s2);}
151 wchar_t* __libcpp_wcsrchr(const wchar_t* __s, wchar_t __c) {return (wchar_t*)wcsrchr(__s, __c);}
153 const wchar_t* wcsrchr(const wchar_t* __s, wchar_t __c) {return __libcpp_wcsrchr(__s, __c);}
155 wchar_t* wcsrchr( wchar_t* __s, wchar_t __c) {return __libcpp_wcsrchr(__s, __c);}
158 wchar_t* __libcpp_wcsstr(const wchar_t* __s1, const wchar_t* __s2) {return (wchar_t*)wcsstr(__s1, __s2);}
160 const wchar_t* wcsstr(const wchar_t* __s1, const wchar_t* __s2) {return __libcpp_wcsstr(__s1, __s2);}
162 wchar_t* wcsstr( wchar_t* __s1, const wchar_t* __s2) {return __libcpp_wcsstr(__s1, __s2);}
165 wchar_t* __libcpp_wmemchr(const wchar_t* __s, wchar_t __c, size_t __n) {return (wchar_t*)wmemchr(__s, __c, __n);}
167 const wchar_t* wmemchr(const wchar_t* __s, wchar_t __c, size_t __n) {return __libcpp_wmemchr(__s, __c, __n);}
169 wchar_t* wmemchr( wchar_t* __s, wchar_t __c, size_t __n) {return __libcpp_wmemchr(__s, __c, __n);}
175 size_t mbsnrtowcs(wchar_t *__restrict dst, const char **__restrict src,
177 size_t wcsnrtombs(char *__restrict dst, const wchar_t **__restrict src,