reactos/sdk/lib/crt/string/atoi.c

14 lines
195 B
C

/* Copyright (C) 1994 DJ Delorie, see COPYING.DJ for details */
#include <precomp.h>
#include <tchar.h>
/*
* @implemented
*/
int
CDECL
_ttoi(const _TCHAR *str)
{
return (int)_ttoi64(str);
}