Home
last modified time | relevance | path

Searched refs:wcs (Results 1 – 8 of 8) sorted by relevance

/wcsmbs/
A Dwcstok.c25 wcstok (wchar_t *wcs, const wchar_t *delim, wchar_t **save_ptr) in wcstok() argument
29 if (wcs == NULL) in wcstok()
37 wcs = *save_ptr; in wcstok()
41 wcs += wcsspn (wcs, delim); in wcstok()
42 if (*wcs == L'\0') in wcstok()
49 result = wcs; in wcstok()
50 wcs = wcspbrk (result, delim); in wcstok()
51 if (wcs == NULL) in wcstok()
57 *wcs = L'\0'; in wcstok()
58 *save_ptr = wcs + 1; in wcstok()
A Dwcschrnul.c26 __wcschrnul (const wchar_t *wcs, const wchar_t wc) in __wcschrnul() argument
28 while (*wcs != L'\0') in __wcschrnul()
29 if (*wcs == wc) in __wcschrnul()
32 ++wcs; in __wcschrnul()
34 return (wchar_t *) wcs; in __wcschrnul()
A Dwcspbrk.c26 wcspbrk (const wchar_t *wcs, const wchar_t *accept) in wcspbrk() argument
28 while (*wcs != L'\0') in wcspbrk()
29 if (wcschr (accept, *wcs) == NULL) in wcspbrk()
30 ++wcs; in wcspbrk()
32 return (wchar_t *) wcs; in wcspbrk()
A Dwcsrchr.c27 WCSRCHR (const wchar_t *wcs, const wchar_t wc) in WCSRCHR() argument
33 if (*wcs == wc) \ in WCSRCHR()
34 retval = (wchar_t*) wcs; \ in WCSRCHR()
35 *wcs++ != L'\0'; \ in WCSRCHR()
A Dwcscspn.c27 wcscspn (const wchar_t *wcs, const wchar_t *reject) in wcscspn() argument
31 while (*wcs != L'\0') in wcscspn()
32 if (wcschr (reject, *wcs++) == NULL) in wcscspn()
A Dwcschr.c27 WCSCHR (const wchar_t *wcs, const wchar_t wc) in WCSCHR() argument
33 if (*wcs == wc) \ in WCSCHR()
34 dest = (wchar_t*) wcs; \ in WCSCHR()
35 dest == NULL && *wcs++ != L'\0'; \ in WCSCHR()
A Dwcsspn.c27 wcsspn (const wchar_t *wcs, const wchar_t *accept) in wcsspn() argument
33 for (p = wcs; *p != L'\0'; ++p) in wcsspn()
A Dtst-wcstod-round.c26 #define FNPFX wcs

Completed in 11 milliseconds