X-Git-Url: https://git.saurik.com/apple/libc.git/blobdiff_plain/3d9156a7a519a5e3aa1b92e9d9d4b991f1aed7ff..2be56ee90c5c5bee77895b8787a43e894249002b:/locale/FreeBSD/wcstod.3 diff --git a/locale/FreeBSD/wcstod.3 b/locale/FreeBSD/wcstod.3 index e63a2c8..9595d07 100644 --- a/locale/FreeBSD/wcstod.3 +++ b/locale/FreeBSD/wcstod.3 @@ -28,40 +28,57 @@ .Dt WCSTOD 3 .Os .Sh NAME -.Nm wcstof , .Nm wcstod , +.Nm wcstof , .Nm wcstold .Nd convert string to -.Vt float , double +.Vt float , +.Vt double , or .Vt "long double" .Sh LIBRARY .Lb libc .Sh SYNOPSIS .In wchar.h +.Ft double +.Fo wcstod +.Fa "const wchar_t *restrict nptr" +.Fa "wchar_t **restrict endptr" +.Fc .Ft float -.Fn wcstof "const wchar_t * restrict nptr" "wchar_t ** restrict endptr" +.Fo wcstof +.Fa "const wchar_t *restrict nptr" +.Fa "wchar_t **restrict endptr" +.Fc .Ft "long double" -.Fn wcstold "const wchar_t * restrict nptr" "wchar_t ** restrict endptr" -.Ft double -.Fn wcstod "const wchar_t * restrict nptr" "wchar_t ** restrict endptr" +.Fo wcstold +.Fa "const wchar_t *restrict nptr" +.Fa "wchar_t **restrict endptr" +.Fc .Sh DESCRIPTION The .Fn wcstof , -.Fn wcstod +.Fn wcstod , and .Fn wcstold functions are the wide-character versions of the .Fn strtof , -.Fn strtod +.Fn strtod , and .Fn strtold functions. Refer to .Xr strtod 3 for details. +.Pp +Extended locale versions of these functions are documented in +.Xr wcstod_l 3 . +See +.Xr xlocale 3 +for more information. .Sh SEE ALSO .Xr strtod 3 , +.Xr wcstod_l 3 , .Xr wcstol 3 .Sh STANDARDS The