1
0
Fork 0
mirror of https://github.com/reactos/reactos.git synced 2025-05-13 06:18:17 +00:00
reactos/sdk/lib/crt/string/atoi.c

13 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);
}