1
0
Fork 0
mirror of https://github.com/reactos/reactos.git synced 2025-07-22 13:34:03 +00:00
reactos/reactos/lib/sdk/crt/string/atoi.c
2007-11-08 10:54:42 +00:00

11 lines
177 B
C

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