summaryrefslogtreecommitdiffstats
path: root/generic/tclInt.h
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2016-10-27 19:39:49 (GMT)
committerdgp <dgp@users.sourceforge.net>2016-10-27 19:39:49 (GMT)
commitec332750d28a86537a3fc721decc3bb74d850dc9 (patch)
tree1265709e60aa38ed6a1ffd00d7660d9f17e13cce /generic/tclInt.h
parente4a82e14e114848e09bb17073c531eba791aacee (diff)
downloadtcl-ec332750d28a86537a3fc721decc3bb74d850dc9.zip
tcl-ec332750d28a86537a3fc721decc3bb74d850dc9.tar.gz
tcl-ec332750d28a86537a3fc721decc3bb74d850dc9.tar.bz2
Start bringing all `string cat` operations into one place so it can be coded
correctly one time instead of badly multiple times.
Diffstat (limited to 'generic/tclInt.h')
-rw-r--r--generic/tclInt.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/generic/tclInt.h b/generic/tclInt.h
index da1b5c5..36c1a81 100644
--- a/generic/tclInt.h
+++ b/generic/tclInt.h
@@ -3135,6 +3135,8 @@ MODULE_SCOPE void TclSpellFix(Tcl_Interp *interp,
Tcl_Obj *bad, Tcl_Obj *fix);
MODULE_SCOPE void * TclStackRealloc(Tcl_Interp *interp, void *ptr,
int numBytes);
+MODULE_SCOPE int TclStringCatObjv(Tcl_Interp *interp, int objc,
+ Tcl_Obj *const objv[], Tcl_Obj **objPtrPtr);
MODULE_SCOPE int TclStringMatch(const char *str, int strLen,
const char *pattern, int ptnLen, int flags);
MODULE_SCOPE int TclStringMatchObj(Tcl_Obj *stringObj,