mirror of
https://github.com/reactos/reactos.git
synced 2025-07-22 13:34:03 +00:00
11 lines
177 B
C
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);
|
|
}
|