:pserver:cvsanon@mok.lvcm.com:/CVS/ReactOS reactos
[reactos.git] / lib / crtdll / wchar / wtoi.c
1 #include <crtdll/wchar.h>
2
3 int _wtoi( const wchar_t *str )
4 {
5         return (int)wcstol(str, 0, 10);
6 }
7   
8 long _wtol( const wchar_t *str )
9 {
10         return (int)wcstol(str, 0, 10);
11 }