Home | Info | Community | Development | myReactOS | Contact Us
Definition at line 8 of file wcstok.c.
Referenced by wcstok().
{ wchar_t *ret; if (!MSVCRT_CHECK_PMT(delim != NULL) || !MSVCRT_CHECK_PMT(next_token != NULL) || !MSVCRT_CHECK_PMT(str != NULL || *next_token != NULL)) { _set_errno(EINVAL); return NULL; } if (!str) str = *next_token; while (*str && strchrW( delim, *str )) str++; if (!*str) return NULL; ret = str++; while (*str && !strchrW( delim, *str )) str++; if (*str) *str++ = 0; *next_token = str; return ret; }