|  |  
 |   |   
 NAMEustrtod - Converts a string into a floating point number. Allegro game programming library. SYNOPSIS#include <allegro.h> double ustrtod(const char *s, char **endp); DESCRIPTIONThis function converts as many characters of `s' that look like a floating point number into one, and sets `*endp' to point to the first unused character, if `endp' is not a NULL pointer. Example: 
 RETURN VALUEReturns the string converted as a value of type `double'. If nothing was converted, returns zero with *endp pointing to the beginning of s. SEE ALSOuconvert(3), ustrtol(3), uatof(3) 
 
 |