logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

ustrtod - Converts a string into a floating point number. Allegro game programming library.

Description

       This  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:

          char *endp, *string = "456.203 askdfg";
          double number = ustrtod(string, &endp);

Name

       ustrtod - Converts a string into a floating point number. Allegro game programming library.

Return Value

       Returns the string converted as a value of type `double'. If nothing was  converted,  returns  zero  with
       *endp pointing to the beginning of s.

See Also

uconvert(3alleg4), ustrtol(3alleg4), uatof(3alleg4)

Allegro                                           version 4.4.3                                 ustrtod(3alleg4)

Synopsis

#include<allegro.h>doubleustrtod(constchar*s,char**endp);

See Also