summaryrefslogtreecommitdiffstats
path: root/doc/ToUpper.3
diff options
context:
space:
mode:
Diffstat (limited to 'doc/ToUpper.3')
-rw-r--r--doc/ToUpper.318
1 files changed, 12 insertions, 6 deletions
diff --git a/doc/ToUpper.3 b/doc/ToUpper.3
index 37ebd2b..587e76b 100644
--- a/doc/ToUpper.3
+++ b/doc/ToUpper.3
@@ -1,9 +1,9 @@
'\"
-'\" Copyright (c) 1997 Sun Microsystems, Inc.
+'\" Copyright (c) 1997 by Sun Microsystems, Inc.
'\"
'\" See the file "license.terms" for information on usage and redistribution
'\" of this file, and for a DISCLAIMER OF ALL WARRANTIES.
-'\"
+'\"
.TH Tcl_UtfToUpper 3 "8.1" Tcl "Tcl Library Procedures"
.so man.macros
.BS
@@ -13,13 +13,13 @@ Tcl_UniCharToUpper, Tcl_UniCharToLower, Tcl_UniCharToTitle, Tcl_UtfToUpper, Tcl_
.nf
\fB#include <tcl.h>\fR
.sp
-int
+Tcl_UniChar
\fBTcl_UniCharToUpper\fR(\fIch\fR)
.sp
-int
+Tcl_UniChar
\fBTcl_UniCharToLower\fR(\fIch\fR)
.sp
-int
+Tcl_UniChar
\fBTcl_UniCharToTitle\fR(\fIch\fR)
.sp
int
@@ -33,7 +33,7 @@ int
.SH ARGUMENTS
.AS char *str in/out
.AP int ch in
-The Unicode character to be converted.
+The Tcl_UniChar to be converted.
.AP char *str in/out
Pointer to UTF-8 string to be converted in place.
.BE
@@ -78,5 +78,11 @@ turns each character in the string into its lower-case equivalent.
turns the first character in the string into its title-case equivalent
and all following characters into their lower-case equivalents.
+.SH BUGS
+.PP
+At this time, the case conversions are only defined for the ISO8859-1
+characters. Unicode characters above 0x00ff are not modified by these
+routines.
+
.SH KEYWORDS
utf, unicode, toupper, tolower, totitle, case