2 Copyright © 2015, The AROS Development Team. All rights reserved.
13 /*****************************************************************************
26 Convert a floating-point number from an ASCII decimal
27 representation into a double-precision format.
30 str - The string which should be converted. Leading
31 whitespace are ignored.
32 endptr - If this is non-NULL, then the address of the first
33 character after the number in the string is stored
37 The float value of the string. The first character after the number
38 is returned in *endptr, if endptr is non-NULL. If no digits can
39 be converted, *endptr contains str (if non-NULL) and 0 is
53 ******************************************************************************/
55 return strtod(str
, endptr
);
58 #endif /* AROS_NOFPU */