diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2018-05-27 12:49:05 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2018-05-27 12:49:05 (GMT) |
commit | 168a0bba1650102be5923b6e26a769019cee094a (patch) | |
tree | fc6c34f6a94f422e2381440eb991993f8c5b5d16 /doc/DString.3 | |
parent | 020fea0acd1d6213f31169581c9fb02bc5a9f82b (diff) | |
parent | 50f0f668e5ac2393dd2e8200726bc0ac3efb6d03 (diff) | |
download | tcl-168a0bba1650102be5923b6e26a769019cee094a.zip tcl-168a0bba1650102be5923b6e26a769019cee094a.tar.gz tcl-168a0bba1650102be5923b6e26a769019cee094a.tar.bz2 |
Merge 8.7. Modify various other functions to use size_t in stead of int arguments
Diffstat (limited to 'doc/DString.3')
-rw-r--r-- | doc/DString.3 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/DString.3 b/doc/DString.3 index b93f119..d35e688 100644 --- a/doc/DString.3 +++ b/doc/DString.3 @@ -47,10 +47,10 @@ Pointer to structure that is used to manage a dynamic string. Pointer to characters to append to dynamic string. .AP "const char" *element in Pointer to characters to append as list element to dynamic string. -.AP int length in -Number of bytes from \fIbytes\fR to add to dynamic string. If -1, +.AP size_t length in +Number of bytes from \fIbytes\fR to add to dynamic string. If (size_t)-1, add all characters up to null terminating character. -.AP int newLength in +.AP size_t newLength in New length for dynamic string, not including null terminating character. .AP Tcl_Interp *interp in/out |