Share more duplicated functions
[reactos.git] / reactos / lib / string / wtoi.c
1 #include <string.h>
2 #include <stdlib.h>
3
4 /*
5 * @implemented
6 */
7 int
8 _wtoi(const wchar_t *str)
9 {
10 return (int)wcstol(str, 0, 10);
11 }