2 Copyright © 1995-2018, The AROS Development Team. All rights reserved.
8 #include <aros/system.h>
9 #if defined(AROS_HAVE_LONG_LONG)
10 /*****************************************************************************
21 Convert a string of digits into an long long integer.
24 str - The string which should be converted. Leading
25 whitespace are ignored. The number may be prefixed
29 The value of string str.
46 atof(), atoi(), atol(), strtod(), strtol(), strtoul()
50 ******************************************************************************/
52 return strtoll(str
, (char **)NULL
, 10);
55 #endif /* AROS_HAVE_LONG_LONG */