diff options
Diffstat (limited to 'doc')
-rw-r--r-- | doc/Concat.3 | 4 | ||||
-rw-r--r-- | doc/DString.3 | 6 | ||||
-rw-r--r-- | doc/SplitList.3 | 6 |
3 files changed, 8 insertions, 8 deletions
diff --git a/doc/Concat.3 b/doc/Concat.3 index edebc01..83c5c30 100644 --- a/doc/Concat.3 +++ b/doc/Concat.3 @@ -5,7 +5,7 @@ '\" See the file "license.terms" for information on usage and redistribution '\" of this file, and for a DISCLAIMER OF ALL WARRANTIES. '\" -'\" RCS: @(#) $Id: Concat.3,v 1.2 1998/09/14 18:39:46 stanton Exp $ +'\" RCS: @(#) $Id: Concat.3,v 1.3 2001/09/24 21:10:32 dgp Exp $ '\" .so man.macros .TH Tcl_Concat 3 7.5 Tcl "Tcl Library Procedures" @@ -21,7 +21,7 @@ char * .SH ARGUMENTS .AP int argc in Number of strings. -.AP char *argv[] in +.AP "char * CONST" argv[] in Array of strings to concatenate. Must have \fIargc\fR entries. .BE diff --git a/doc/DString.3 b/doc/DString.3 index ae2b966..65e66fd 100644 --- a/doc/DString.3 +++ b/doc/DString.3 @@ -5,7 +5,7 @@ '\" See the file "license.terms" for information on usage and redistribution '\" of this file, and for a DISCLAIMER OF ALL WARRANTIES. '\" -'\" RCS: @(#) $Id: DString.3,v 1.5 2000/04/14 23:01:50 hobbs Exp $ +'\" RCS: @(#) $Id: DString.3,v 1.6 2001/09/24 21:10:32 dgp Exp $ '\" .so man.macros .TH Tcl_DString 3 7.4 Tcl "Tcl Library Procedures" @@ -18,10 +18,10 @@ Tcl_DStringInit, Tcl_DStringAppend, Tcl_DStringAppendElement, Tcl_DStringStartSu .sp \fBTcl_DStringInit\fR(\fIdsPtr\fR) .sp -char * +CONST char * \fBTcl_DStringAppend\fR(\fIdsPtr, string, length\fR) .sp -char * +CONST char * \fBTcl_DStringAppendElement\fR(\fIdsPtr, string\fR) .sp \fBTcl_DStringStartSublist\fR(\fIdsPtr\fR) diff --git a/doc/SplitList.3 b/doc/SplitList.3 index f6aa772..0548606 100644 --- a/doc/SplitList.3 +++ b/doc/SplitList.3 @@ -5,7 +5,7 @@ '\" See the file "license.terms" for information on usage and redistribution '\" of this file, and for a DISCLAIMER OF ALL WARRANTIES. '\" -'\" RCS: @(#) $Id: SplitList.3,v 1.4 2000/07/24 00:03:02 jenglish Exp $ +'\" RCS: @(#) $Id: SplitList.3,v 1.5 2001/09/24 21:10:32 dgp Exp $ '\" .so man.macros .TH Tcl_SplitList 3 8.0 Tcl "Tcl Library Procedures" @@ -49,10 +49,10 @@ There will be \fI*argcPtr\fR valid entries in the array, followed by a NULL entry. .AP int argc in Number of elements in \fIargv\fR. -.AP char **argv in +.AP "char * CONST" *argv in Array of strings to merge together into a single list. Each string will become a separate element of the list. -.AP char *src in +.AP "CONST char" *src in String that is to become an element of a list. .AP int *flagsPtr in Pointer to word to fill in with information about \fIsrc\fR. |