f8282056ef62864b3b1c5835430e339557f7fa5e
[reactos.git] / lib / msvcrt / stdlib / wtoi.c
1 #include <msvcrt/stdlib.h>
2
3 /*
4  * @implemented
5  */
6 int _wtoi( const wchar_t *str )
7 {
8         return (int)wcstol(str, 0, 10);
9 }
10
11 /*
12  * @implemented
13  */
14 long _wtol( const wchar_t *str )
15 {
16         return (int)wcstol(str, 0, 10);
17 }