diff options
author | redman <redman> | 1999-07-22 01:08:03 (GMT) |
---|---|---|
committer | redman <redman> | 1999-07-22 01:08:03 (GMT) |
commit | 54b6980992593dd026c12db3f5aaef9dce67e0e3 (patch) | |
tree | 5dbfa8778122c25040f24668b6e635cf0ab23b40 /doc | |
parent | 0921ebbcedf454aec8e95005807f6f564f812299 (diff) | |
download | tcl-54b6980992593dd026c12db3f5aaef9dce67e0e3.zip tcl-54b6980992593dd026c12db3f5aaef9dce67e0e3.tar.gz tcl-54b6980992593dd026c12db3f5aaef9dce67e0e3.tar.bz2 |
* doc/Utf.3:
* generic/tcl.decls:
* generic/tclInt.decls:
* generic/tclDecls.h:
* generic/tclIntDecls.h:
* generic/tclUtf.c:
* compat/strftime.c:
* unix/tclUnixTime.c: Changed function declarations in
non-platform-specific APIs to use "unsigned long" instead of
"size_t", which may not be defined on certain compilers (rather
than include sys/types.h, which may not exist).
Diffstat (limited to 'doc')
-rw-r--r-- | doc/Utf.3 | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -4,7 +4,7 @@ '\" See the file "license.terms" for information on usage and redistribution '\" of this file, and for a DISCLAIMER OF ALL WARRANTIES. '\" -'\" RCS: @(#) $Id: Utf.3,v 1.5 1999/05/06 19:14:42 stanton Exp $ +'\" RCS: @(#) $Id: Utf.3,v 1.6 1999/07/22 01:08:04 redman Exp $ '\" .so man.macros .TH Utf 3 "8.1" Tcl "Tcl Library Procedures" @@ -88,7 +88,7 @@ The length of the Unicode string in characters. Must be greater than or equal to 0. .AP "Tcl_DString" *dstPtr in/out A pointer to a previously-initialized \fBTcl_DString\fR. -.AP size_t n in +.AP "unsigned long" num in The number of characters to compare. .AP "CONST char" *start in Pointer to the beginning of a UTF-8 string. |