mirror of
https://github.com/reactos/reactos.git
synced 2024-11-01 04:11:30 +00:00
14 lines
195 B
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);
|
|
}
|