update for HEAD-2003091401
[reactos.git] / lib / crtdll / wchar / wtoi.c
1 #include <msvcrt/wchar.h>
2
3
4 /*
5  * @implemented
6  *
7  * this function is now forwarded to NTDLL._wtoi to reduce code duplication
8  */
9 #if 0
10 int _wtoi(const wchar_t* str)
11 {
12         return (int)wcstol(str, 0, 10);
13 }
14 #endif
15   
16 /*
17  * @implemented
18  *
19  * this function is now forwarded to NTDLL._wtol to reduce code duplication
20  */
21 #if 0
22 long _wtol(const wchar_t* str)
23 {
24         return (int)wcstol(str, 0, 10);
25 }
26 #endif