STRTODL(3) BSD Library Functions Manual STRTODL(3)
NAME
strtodl, strtofl, strtoldl -- convert ASCI string to floating point
LIBRARY
Standard C Library (libc, -lc)
SYNOPSIS
##include <>
##include <>
double
strtodl(const char * restrict nptr, char ** restrict endptr,
localet loc);
float
strtofl(const char * restrict nptr, char ** restrict endptr,
localet loc);
long double
strtoldl(const char * restrict nptr, char ** restrict endptr,
localet loc);
DESCRIPTION
The strtodl(), strtofl(), and strtoldl() functions are extended locale
versions of the strtod(), strtof(), and strtold() functions, respec-
tively. Refer to their manual pages for details. Also, see xlocale(3)
for more information about extended locales.
SEE ALSO
strtod(3), xlocale(3)
BSD March 11, 2005 BSD
|