TIOS_strtod Function (ROM Call 0x4D4*)

AMS 2.00 or higher stdlib.h

double TIOS_strtod(const char *str, char **endptr);

You really should use strtod, unless you know what you, and your users, are doing.
This is the direct system call, which will usually take less space in your program than the library routine for strtod. But if you use it on AMS 1.00-2.03, never pass NULL as endptr, otherwise the routine will trigger a crash !


Uses: CTypeTable, errno, push_ulong_to_integer, _bcd_math
Used by: EQU_getNameInfo, push_parse_prgm_or_func_text, cmd_get, push_parse_text


See also: strtod