2 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
5 ANSI C function atof().
13 /*****************************************************************************
24 Convert a string of digits into a double.
27 str - The string which should be converted. Leading
28 whitespace are ignored. The number may be prefixed
32 The value of string str.
41 atoi(), atol(), strtod(), strtol(), strtoul()
45 ******************************************************************************/
47 return strtod (str
, (char **)NULL
);
52 void atof(const char * str
)
57 #endif /* AROS_NOFPU */