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 } 14