This commit was manufactured by cvs2svn to create branch 'captive'.
[reactos.git] / lib / crtdll / string / lasttok.c
1 #include <msvcrt/string.h>
2
3 /*
4  * This is a CRTDLL internal function to return the lasttoken
5  * bit of data used by strtok. The reason for it's existence is
6  * so that CRTDLL can use MSVCRT's implementation of strtok.
7  */
8 char** _lasttoken()
9 {
10         static char *lasttoken = NULL;
11         return &lasttoken;
12 }