[crt]
[reactos.git] / reactos / lib / sdk / 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 _ttoi(const _TCHAR *str)
10 {
11 return (int)_ttoi64(str);
12 }