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

13 lines
196 B
C
Raw Normal View History

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