From: Sascha Wildner Date: Thu, 2 Nov 2006 19:53:56 +0000 (+0000) Subject: Add wcstod(3) and wcstol(3) manual pages. X-Git-Tag: v2.0.1~4180 X-Git-Url: https://gitweb.dragonflybsd.org/dragonfly.git/commitdiff_plain/13efb7ac24e306021648d2bfe009f1ea70858314 Add wcstod(3) and wcstol(3) manual pages. Adapted-from: NetBSD --- diff --git a/lib/libc/locale/Makefile.inc b/lib/libc/locale/Makefile.inc index ad1f285aee..39d77b9e73 100644 --- a/lib/libc/locale/Makefile.inc +++ b/lib/libc/locale/Makefile.inc @@ -1,4 +1,4 @@ -# $DragonFly: src/lib/libc/locale/Makefile.inc,v 1.11 2005/08/10 13:42:28 joerg Exp $ +# $DragonFly: src/lib/libc/locale/Makefile.inc,v 1.12 2006/11/02 19:53:56 swildner Exp $ .PATH: ${.CURDIR}/../libc/locale @@ -17,6 +17,7 @@ MAN+= nl_langinfo.3 setlocale.3 MAN+= btowc.3 iswalnum.3 iswctype.3 towlower.3 towctrans.3 mblen.3 mbrlen.3 MAN+= mbrtowc.3 mbsinit.3 mbsrtowcs.3 mbstowcs.3 mbtowc.3 wcrtomb.3 MAN+= wcsftime.3 wcsrtombs.3 wcstombs.3 wctob.3 wctomb.3 wctrans.3 wctype.3 +MAN+= wcstod.3 wcstol.3 MLINKS+=iswalnum.3 iswalpha.3 iswalnum.3 iswblank.3 MLINKS+=iswalnum.3 iswcntrl.3 iswalnum.3 iswdigit.3 @@ -25,4 +26,6 @@ MLINKS+=iswalnum.3 iswprint.3 iswalnum.3 iswpunct.3 MLINKS+=iswalnum.3 iswspace.3 iswalnum.3 iswupper.3 MLINKS+=iswalnum.3 iswxdigit.3 towlower.3 towupper.3 MLINKS+=setlocale.3 localeconv.3 +MLINKS+=wcstol.3 wcstoul.3 wcstol.3 wcstoll.3 wcstol.3 wcstoull.3 +MLINKS+=wcstol.3 wcstoimax.3 wcstol.3 wcstoumax.3 .endif diff --git a/lib/libc/locale/wcstod.3 b/lib/libc/locale/wcstod.3 new file mode 100644 index 0000000000..d3ae201d6f --- /dev/null +++ b/lib/libc/locale/wcstod.3 @@ -0,0 +1,59 @@ +.\" $NetBSD: wcstod.3,v 1.4 2006/04/23 16:44:00 wiz Exp $ +.\" $DragonFly: src/lib/libc/locale/wcstod.3,v 1.1 2006/11/02 19:53:56 swildner Exp $ +.\" +.\" Copyright (c) 2002, 2003 Tim J. Robbins +.\" All rights reserved. +.\" +.\" Redistribution and use in source and binary forms, with or without +.\" modification, are permitted provided that the following conditions +.\" are met: +.\" 1. Redistributions of source code must retain the above copyright +.\" notice, this list of conditions and the following disclaimer. +.\" 2. Redistributions in binary form must reproduce the above copyright +.\" notice, this list of conditions and the following disclaimer in the +.\" documentation and/or other materials provided with the distribution. +.\" +.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND +.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +.\" ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE +.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS +.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY +.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF +.\" SUCH DAMAGE. +.\" +.\" $FreeBSD: wcstod.3,v 1.4 2003/05/22 13:02:27 ru Exp $ +.\" +.Dd November 2, 2006 +.Dt WCSTOD 3 +.Os +.Sh NAME +.Nm wcstod +.Nd convert string to +.Vt double +.Sh LIBRARY +.Lb libc +.Sh SYNOPSIS +.In wchar.h +.Ft double +.Fn wcstod "const wchar_t *nptr" "wchar_t **endptr" +.Sh DESCRIPTION +The +.Fn wcstod +function is the wide-character version of the +.Fn strtod +function. +Refer to +.Xr strtod 3 +for details. +.Sh SEE ALSO +.Xr strtod 3 , +.Xr wcstol 3 +.Sh STANDARDS +The +.Fn wcstod +function conforms to +.St -isoC-amd1 . diff --git a/lib/libc/locale/wcstol.3 b/lib/libc/locale/wcstol.3 new file mode 100644 index 0000000000..fe3efcd668 --- /dev/null +++ b/lib/libc/locale/wcstol.3 @@ -0,0 +1,97 @@ +.\" $NetBSD: wcstol.3,v 1.2 2006/08/08 17:32:05 wiz Exp $ +.\" $DragonFly: src/lib/libc/locale/wcstol.3,v 1.1 2006/11/02 19:53:56 swildner Exp $ +.\" +.\" Copyright (c) 2002 Tim J. Robbins +.\" All rights reserved. +.\" +.\" Redistribution and use in source and binary forms, with or without +.\" modification, are permitted provided that the following conditions +.\" are met: +.\" 1. Redistributions of source code must retain the above copyright +.\" notice, this list of conditions and the following disclaimer. +.\" 2. Redistributions in binary form must reproduce the above copyright +.\" notice, this list of conditions and the following disclaimer in the +.\" documentation and/or other materials provided with the distribution. +.\" +.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND +.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +.\" ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE +.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS +.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY +.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF +.\" SUCH DAMAGE. +.\" +.\" $FreeBSD: src/lib/libc/locale/wcstol.3,v 1.4 2002/11/29 17:35:09 ru Exp $ +.\" +.Dd November 2, 2006 +.Dt WCSTOL 3 +.Os +.Sh NAME +.Nm wcstol , wcstoul , +.Nm wcstoll , wcstoull , +.Nm wcstoimax , wcstoumax +.Nd "convert a wide character string value to a" +.Vt long , +.Vt "unsigned long" , +.Vt "long long" , +.Vt "unsigned long long" , +.Vt intmax_t +or +.Vt uintmax_t +integer +.Sh LIBRARY +.Lb libc +.Sh SYNOPSIS +.In wchar.h +.Ft long +.Fn wcstol "const wchar_t *nptr" "wchar_t **endptr" "int base" +.Ft "unsigned long" +.Fn wcstoul "const wchar_t *nptr" "wchar_t **endptr" "int base" +.Ft "long long" +.Fn wcstoll "const wchar_t *nptr" "wchar_t **endptr" "int base" +.Ft "unsigned long long" +.Fn wcstoull "const wchar_t *nptr" "wchar_t **endptr" "int base" +.In inttypes.h +.Ft intmax_t +.Fn wcstoimax "const wchar_t *nptr" "wchar_t **endptr" "int base" +.Ft uintmax_t +.Fn wcstoumax "const wchar_t *nptr" "wchar_t **endptr" "int base" +.Sh DESCRIPTION +The +.Fn wcstol , +.Fn wcstoul , +.Fn wcstoll , +.Fn wcstoull , +.Fn wcstoimax +and +.Fn wcstoumax +functions are wide-character versions of the +.Fn strtol , +.Fn strtoul , +.Fn strtoll , +.Fn strtoull , +.Fn strtoimax +and +.Fn strtoumax +functions, respectively. +Refer to their manual pages (for example +.Xr strtol 3 ) +for details. +.Sh SEE ALSO +.Xr strtol 3 , +.Xr strtoul 3 +.Sh STANDARDS +The +.Fn wcstol , +.Fn wcstoul , +.Fn wcstoll , +.Fn wcstoull , +.Fn wcstoimax +and +.Fn wcstoumax +functions conform to +.St -isoC-99 .