]> git.saurik.com Git - apple/libc.git/blobdiff - locale/FreeBSD/towlower.3
Libc-1082.50.1.tar.gz
[apple/libc.git] / locale / FreeBSD / towlower.3
index 6bdd3c85f3d78e51e10e36740b618b625284d992..248d5b14c5fcf32dff42911e567bc0ef83bc8f1b 100644 (file)
 .\" 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.
-.\" 3. All advertising materials mentioning features or use of this software
-.\"    must display the following acknowledgement:
-.\"    This product includes software developed by the University of
-.\"    California, Berkeley and its contributors.
 .\" 4. Neither the name of the University nor the names of its contributors
 .\"    may be used to endorse or promote products derived from this software
 .\"    without specific prior written permission.
 .\" SUCH DAMAGE.
 .\"
 .\"    @(#)tolower.3   8.1 (Berkeley) 6/4/93
-.\" $FreeBSD: src/lib/libc/locale/towlower.3,v 1.5 2002/11/29 17:35:09 ru Exp $
+.\" $FreeBSD: src/lib/libc/locale/towlower.3,v 1.6 2007/01/09 00:28:01 imp Exp $
 .\"
 .Dd October 3, 2002
 .Dt TOWLOWER 3
 .Os
 .Sh NAME
-.Nm towlower
+.Nm towlower ,
+.Nm towlower_l
 .Nd "upper case to lower case letter conversion (wide character version)"
 .Sh LIBRARY
 .Lb libc
 .Sh SYNOPSIS
 .In wctype.h
 .Ft wint_t
-.Fn towlower "wint_t wc"
+.Fo towlower
+.Fa "wint_t wc"
+.Fc
+.In wctype.h
+.In xlocale.h
+.Ft wint_t
+.Fo towlower_l
+.Fa "wint_t wc"
+.Fa "locale_t loc"
+.Fc
 .Sh DESCRIPTION
 The
 .Fn towlower
 function converts an upper-case letter to the corresponding lower-case
 letter.
+.Pp
+Although the
+.Fn towlower
+function uses the current locale, the
+.Fn towlower_l
+function may be passed a locale directly. See
+.Xr xlocale 3
+for more information.
 .Sh RETURN VALUES
 If the argument is an upper-case letter, the
 .Fn towlower
 function returns the corresponding lower-case letter if there is
-one; otherwise the argument is returned unchanged.
+one; otherwise, the argument is returned unchanged.
 .Sh SEE ALSO
 .Xr iswlower 3 ,
 .Xr tolower 3 ,
 .Xr towupper 3 ,
-.Xr wctrans 3
+.Xr wctrans 3 ,
+.Xr xlocale 3
 .Sh STANDARDS
 The
 .Fn towlower