update for HEAD-2003091401
[reactos.git] / lib / crtdll / wchar / wlasttok.c
1 #include <msvcrt/wchar.h>
2
3 /*
4  * This is a CRTDLL internal function to return the lasttoken
5  * bit of data used by wcstok. The reason for it's existence is
6  * so that CRTDLL can use MSVCRT's implementation of wcstok.
7  */
8 wchar_t** _wlasttoken()
9 {
10         static wchar_t *wlasttoken = NULL;
11         return &wlasttoken;
12 }