netbsd man page for atof

Query: atof

OS: netbsd

Section: 3

Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar

ATOF(3) 						   BSD Library Functions Manual 						   ATOF(3)

NAME
atof -- convert ASCII string to double
LIBRARY
Standard C Library (libc, -lc)
SYNOPSIS
#include <stdlib.h> double atof(const char *nptr);
DESCRIPTION
The atof() function converts the initial portion of the string pointed to by nptr to double representation. It is equivalent to: strtod(nptr, (char **)NULL);
SEE ALSO
atoi(3), atol(3), strtod(3), strtol(3), strtoul(3)
STANDARDS
The atof() function conforms to ANSI X3.159-1989 (``ANSI C89'').
BSD
June 4, 1993 BSD
Related Man Pages
atof(2) - plan9
strtod(3) - netbsd
strtof(3) - netbsd
atof(3) - osx
atoll(3) - freebsd
Similar Topics in the Unix Linux Community
Interesting implementation: atol, atof etc
Need to display complete format of ps
atof problem