2 Copyright © 1995-2012, The AROS Development Team. All rights reserved.
5 ANSI C function atol().
8 /*****************************************************************************
19 Convert a string of digits into an long integer.
22 str - The string which should be converted. Leading
23 whitespace are ignored. The number may be prefixed
27 The value of string str.
44 atof(), atoi(), strtod(), strtol(), strtoul()
48 ******************************************************************************/
50 return strtol(str
, (char **)NULL
, 10);