2 Copyright © 1995-2012, The AROS Development Team. All rights reserved.
8 /*****************************************************************************
19 Convert a string of digits into an 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(), atol(), strtod(), strtol(), strtoul()
48 ******************************************************************************/
50 return strtol(str
, (char **)NULL
, 10);