Main index | Section 3 | Options |
#include <wchar.h>
The wcstok() function is the wide character counterpart of the strtok_r() function.
const wchar_t *seps = L" \t\n"; wchar_t *last, *tok, text[] = L" \none\ttwo\t\tthree \n";for (tok = wcstok(text, seps, &last); tok != NULL; tok = wcstok(NULL, seps, &last)) wprintf(L"%ls\n", tok);
WCSTOK (3) | October 3, 2002 |
Main index | Section 3 | Options |
Please direct any comments about this manual page service to Ben Bullock. Privacy policy.