Lines Matching refs:wchar_t

89 typedef	int	wchar_t;  typedef
91 typedef long wchar_t;
188 extern wchar_t *__fgetws_xpg5(wchar_t *_RESTRICT_KYWD, int,
190 extern int __fputws_xpg5(const wchar_t *_RESTRICT_KYWD, __FILE *_RESTRICT_KYWD);
206 extern wchar_t *fgetws(wchar_t *_RESTRICT_KYWD, int, __FILE *_RESTRICT_KYWD);
208 extern int fputws(const wchar_t *_RESTRICT_KYWD, __FILE *_RESTRICT_KYWD);
214 extern double wcstod(const wchar_t *_RESTRICT_KYWD, wchar_t **_RESTRICT_KYWD);
215 extern long wcstol(const wchar_t *_RESTRICT_KYWD, wchar_t **_RESTRICT_KYWD,
217 extern unsigned long wcstoul(const wchar_t *_RESTRICT_KYWD,
218 wchar_t **_RESTRICT_KYWD, int);
219 extern wchar_t *wcscat(wchar_t *_RESTRICT_KYWD, const wchar_t *_RESTRICT_KYWD);
220 extern int wcscmp(const wchar_t *, const wchar_t *);
221 extern int wcscoll(const wchar_t *, const wchar_t *);
222 extern wchar_t *wcscpy(wchar_t *_RESTRICT_KYWD, const wchar_t *_RESTRICT_KYWD);
223 extern size_t wcscspn(const wchar_t *, const wchar_t *);
224 extern size_t wcslen(const wchar_t *);
225 extern wchar_t *wcsncat(wchar_t *_RESTRICT_KYWD, const wchar_t *_RESTRICT_KYWD,
227 extern int wcsncmp(const wchar_t *, const wchar_t *, size_t);
228 extern wchar_t *wcsncpy(wchar_t *_RESTRICT_KYWD, const wchar_t *_RESTRICT_KYWD,
230 extern size_t wcsspn(const wchar_t *, const wchar_t *);
231 extern size_t wcsxfrm(wchar_t *_RESTRICT_KYWD, const wchar_t *_RESTRICT_KYWD,
234 extern const wchar_t *wcschr(const wchar_t *, wchar_t);
236 inline wchar_t *wcschr(wchar_t *__ws, wchar_t __wc) { in wcschr()
237 return (wchar_t *)wcschr((const wchar_t *)__ws, __wc); in wcschr()
240 extern const wchar_t *wcspbrk(const wchar_t *, const wchar_t *);
242 inline wchar_t *wcspbrk(wchar_t *__ws1, const wchar_t *__ws2) { in wcspbrk()
243 return (wchar_t *)wcspbrk((const wchar_t *)__ws1, __ws2); in wcspbrk()
246 extern const wchar_t *wcsrchr(const wchar_t *, wchar_t);
248 inline wchar_t *wcsrchr(wchar_t *__ws, wchar_t __wc) { in wcsrchr()
249 return (wchar_t *)wcsrchr((const wchar_t *)__ws, __wc); in wcsrchr()
253 extern wchar_t *wcschr(const wchar_t *, wchar_t);
254 extern wchar_t *wcspbrk(const wchar_t *, const wchar_t *);
255 extern wchar_t *wcsrchr(const wchar_t *, wchar_t);
260 extern wchar_t *wcstok(wchar_t *, const wchar_t *);
261 extern size_t wcsftime(wchar_t *, size_t, const char *, const struct tm *);
266 extern wchar_t *wcstok(wchar_t *_RESTRICT_KYWD, const wchar_t *_RESTRICT_KYWD,
267 wchar_t **_RESTRICT_KYWD);
268 extern size_t wcsftime(wchar_t *_RESTRICT_KYWD, size_t,
269 const wchar_t *_RESTRICT_KYWD, const struct tm *_RESTRICT_KYWD);
271 extern wchar_t *__wcstok_xpg5(wchar_t *_RESTRICT_KYWD,
272 const wchar_t *_RESTRICT_KYWD, wchar_t **_RESTRICT_KYWD);
273 extern size_t __wcsftime_xpg5(wchar_t *_RESTRICT_KYWD, size_t,
274 const wchar_t *_RESTRICT_KYWD, const struct tm *_RESTRICT_KYWD);
284 extern int fwprintf(__FILE *_RESTRICT_KYWD, const wchar_t *_RESTRICT_KYWD,
286 extern int fwscanf(__FILE *_RESTRICT_KYWD, const wchar_t *_RESTRICT_KYWD,
292 extern size_t mbrtowc(wchar_t *_RESTRICT_KYWD, const char *_RESTRICT_KYWD,
294 extern size_t mbsrtowcs(wchar_t *_RESTRICT_KYWD, const char **_RESTRICT_KYWD,
296 extern int swprintf(wchar_t *_RESTRICT_KYWD, size_t,
297 const wchar_t *_RESTRICT_KYWD, ...);
298 extern int swscanf(const wchar_t *_RESTRICT_KYWD,
299 const wchar_t *_RESTRICT_KYWD, ...);
300 extern int vfwprintf(__FILE *_RESTRICT_KYWD, const wchar_t *_RESTRICT_KYWD,
302 extern int vwprintf(const wchar_t *_RESTRICT_KYWD, __va_list);
303 extern int vswprintf(wchar_t *_RESTRICT_KYWD, size_t,
304 const wchar_t *_RESTRICT_KYWD, __va_list);
305 extern size_t wcrtomb(char *_RESTRICT_KYWD, wchar_t,
307 extern size_t wcsrtombs(char *_RESTRICT_KYWD, const wchar_t **_RESTRICT_KYWD,
310 extern size_t wcsnrtombs(char *_RESTRICT_KYWD, const wchar_t **_RESTRICT_KYWD,
314 extern int wmemcmp(const wchar_t *, const wchar_t *, size_t);
315 extern wchar_t *wmemcpy(wchar_t *_RESTRICT_KYWD,
316 const wchar_t *_RESTRICT_KYWD, size_t);
317 extern wchar_t *wmemmove(wchar_t *, const wchar_t *, size_t);
318 extern wchar_t *wmemset(wchar_t *, wchar_t, size_t);
319 extern int wprintf(const wchar_t *_RESTRICT_KYWD, ...);
320 extern int wscanf(const wchar_t *_RESTRICT_KYWD, ...);
322 extern const wchar_t *wcsstr(const wchar_t *, const wchar_t *);
324 inline wchar_t *wcsstr(wchar_t *__ws1, const wchar_t *__ws2) { in wcsstr()
325 return (wchar_t *)wcsstr((const wchar_t *)__ws1, __ws2); in wcsstr()
328 extern const wchar_t *wmemchr(const wchar_t *, wchar_t, size_t);
330 inline wchar_t *wmemchr(wchar_t *__ws, wchar_t __wc, size_t __n) { in wmemchr()
331 return (wchar_t *)wmemchr((const wchar_t *)__ws, __wc, __n); in wmemchr()
335 extern wchar_t *wcsstr(const wchar_t *_RESTRICT_KYWD,
336 const wchar_t *_RESTRICT_KYWD);
337 extern wchar_t *wmemchr(const wchar_t *, wchar_t, size_t);