Samuel SerapiĆ³n (samdwise51 AT gmail DOT com):
[reactos.git] / reactos / lib / sdk / crt / string / atol.c
1 /* Copyright (C) 1994 DJ Delorie, see COPYING.DJ for details */
2 #include <stdlib.h>
3 #include <tchar.h>
4
5 /*
6 * @implemented
7 */
8 long
9 _ttol(const _TCHAR *str)
10 {
11 return _tcstol(str, 0, 10);
12 }
13
14 int _atoldbl(long double *value, const char *str)
15 {
16 /* FIXME needs error checking for huge/small values */
17 //*value = strtold(str,0);
18 return 0;
19 }