X-Git-Url: https://git.saurik.com/apple/libc.git/blobdiff_plain/1f2f436a38f7ae2d39a943ad2898d8fed4ed2e58..974e388456677d82eb6d10d4fd72390641a5bdfe:/locale/FreeBSD/toupper.3?ds=sidebyside diff --git a/locale/FreeBSD/toupper.3 b/locale/FreeBSD/toupper.3 index cf23d15..5b196a9 100644 --- a/locale/FreeBSD/toupper.3 +++ b/locale/FreeBSD/toupper.3 @@ -36,14 +36,24 @@ .Dt TOUPPER 3 .Os .Sh NAME -.Nm toupper +.Nm toupper , +.Nm toupper_l .Nd lower case to upper case letter conversion .Sh LIBRARY .Lb libc .Sh SYNOPSIS .In ctype.h .Ft int -.Fn toupper "int c" +.Fo toupper +.Fa "int c" +.Fc +.In ctype.h +.In xlocale.h +.Ft int +.Fo toupper_l +.Fa "int c" +.Fa "locale_t loc" +.Fc .Sh DESCRIPTION The .Fn toupper @@ -53,11 +63,19 @@ The argument must be representable as an .Vt "unsigned char" or the value of .Dv EOF . +.Pp +Although the +.Fn toupper +function uses the current locale, the +.Fn toupper_l +function may be passed a locale directly. See +.Xr xlocale 3 +for more information. .Sh RETURN VALUES If the argument is a lower-case letter, the .Fn toupper function returns the corresponding upper-case letter if there is -one; otherwise the argument is returned unchanged. +one; otherwise, the argument is returned unchanged. .Sh COMPATIBILITY The .Bx 4.4 @@ -71,7 +89,8 @@ function should be used instead. .Sh SEE ALSO .Xr ctype 3 , .Xr isupper 3 , -.Xr towupper 3 +.Xr towupper 3 , +.Xr xlocale 3 .Sh STANDARDS The .Fn toupper