[LWIP] Fix src/core/init.c a bit (#1620)
[reactos.git] / sdk / lib / crt / string / atoi.c
1 /* Copyright (C) 1994 DJ Delorie, see COPYING.DJ for details */
2 #include <precomp.h>
3 #include <tchar.h>
4
5 /*
6 * @implemented
7 */
8 int
9 CDECL
10 _ttoi(const _TCHAR *str)
11 {
12 return (int)_ttoi64(str);
13 }