X-Git-Url: https://git.saurik.com/apple/libc.git/blobdiff_plain/1f2f436a38f7ae2d39a943ad2898d8fed4ed2e58..15de9d6b4ab2de27ae24b13b7b6c4d55fffe4aef:/locale/FreeBSD/towlower.3 diff --git a/locale/FreeBSD/towlower.3 b/locale/FreeBSD/towlower.3 index b6968b7..248d5b1 100644 --- a/locale/FreeBSD/towlower.3 +++ b/locale/FreeBSD/towlower.3 @@ -36,29 +36,48 @@ .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