diff options
Diffstat (limited to 'doc/Concat.3')
-rw-r--r-- | doc/Concat.3 | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/doc/Concat.3 b/doc/Concat.3 index edebc01..58a0fb6 100644 --- a/doc/Concat.3 +++ b/doc/Concat.3 @@ -5,10 +5,8 @@ '\" 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 $ -'\" -.so man.macros .TH Tcl_Concat 3 7.5 Tcl "Tcl Library Procedures" +.so man.macros .BS .SH NAME Tcl_Concat \- concatenate a collection of strings @@ -16,12 +14,13 @@ Tcl_Concat \- concatenate a collection of strings .nf \fB#include <tcl.h>\fR .sp -char * +const char * \fBTcl_Concat\fR(\fIargc, argv\fR) .SH ARGUMENTS +.AS "const char *const" argv[] .AP int argc in Number of strings. -.AP char *argv[] in +.AP "const char *const" argv[] in Array of strings to concatenate. Must have \fIargc\fR entries. .BE @@ -43,12 +42,9 @@ copies strings from \fBargv\fR to the result. If an element of is ignored entirely. This white-space removal was added to make the output of the \fBconcat\fR command cleaner-looking. .PP -.VS The result string is dynamically allocated using \fBTcl_Alloc\fR; the caller must eventually release the space by calling \fBTcl_Free\fR. -.VE -.VS .SH "SEE ALSO" Tcl_ConcatObj .SH KEYWORDS |