update for HEAD-2003091401
[reactos.git] / lib / msvcrt / wstring / wlasttok.c
diff --git a/lib/msvcrt/wstring/wlasttok.c b/lib/msvcrt/wstring/wlasttok.c
new file mode 100644 (file)
index 0000000..fcc80c0
--- /dev/null
@@ -0,0 +1,14 @@
+#include <msvcrt/internal/tls.h>
+#include <msvcrt/assert.h>
+/*
+ * This is an MSVCRT internal function to return the lasttoken
+ * bit of data used by wcstok. The reason for it's existence is
+ * so that CRTDLL can use the wcstok source code in the same
+ * file.
+ */
+wchar_t** _wlasttoken()
+{
+       PTHREADDATA ptd = GetThreadData();
+       assert(ptd);
+       return &(ptd->wlasttoken);
+}