Skip site navigation (1)Skip section navigation (2)

FreeBSD Manual Pages

  
 
  

home | help
ustrtod(3)			 Allegro manual 		      ustrtod(3)

NAME
     ustrtod - Converts a string into a floating point number. Allegro game pro-
     gramming library.

SYNOPSIS
     #include <allegro.h>

     double ustrtod(const char *s, char **endp);

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  char-
     acter, if `endp' is not a NULL pointer. Example:

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

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(3), ustrtol(3), uatof(3)

Allegro 			  version 4.4.3 		      ustrtod(3)

Want to link to this manual page? Use this URL:
<https://man.freebsd.org/cgi/man.cgi?query=ustrtod&sektion=3&manpath=FreeBSD+Ports+15.1.quarterly>

home | help