update for HEAD-2003021201
[reactos.git] / lib / crtdll / wchar / wtoi.c
1 #include <msvcrt/wchar.h>
2
3
4 int _wtoi(const wchar_t* str)
5 {
6         return (int)wcstol(str, 0, 10);
7 }
8   
9 long _wtol(const wchar_t* str)
10 {
11         return (int)wcstol(str, 0, 10);
12 }