summaryrefslogtreecommitdiffstats
path: root/generic/tclInt.h
diff options
context:
space:
mode:
authordgp <dgp@noemail.net>2011-04-13 20:27:29 (GMT)
committerdgp <dgp@noemail.net>2011-04-13 20:27:29 (GMT)
commit43e921a160c0f4fd832595c395e26a99fd0c8cde (patch)
treeed1d89e9c50ba82b9724bfc18033907549896ec3 /generic/tclInt.h
parenta812efa5d2d8221a1f8054e882c600b489c2cf75 (diff)
downloadtcl-43e921a160c0f4fd832595c395e26a99fd0c8cde.zip
tcl-43e921a160c0f4fd832595c395e26a99fd0c8cde.tar.gz
tcl-43e921a160c0f4fd832595c395e26a99fd0c8cde.tar.bz2
[Bug 3285375]: Rewrite Tcl_Concat*() and [string trim*].
FossilOrigin-Name: c48b1de11383228d0ef68e49119d402c8dee031c
Diffstat (limited to 'generic/tclInt.h')
-rw-r--r--generic/tclInt.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/generic/tclInt.h b/generic/tclInt.h
index c966610..b8a4dfa 100644
--- a/generic/tclInt.h
+++ b/generic/tclInt.h
@@ -2784,6 +2784,10 @@ MODULE_SCOPE int TclSubstTokens(Tcl_Interp *interp, Tcl_Token *tokenPtr,
int *clNextOuter, CONST char *outerScript);
MODULE_SCOPE void TclTransferResult(Tcl_Interp *sourceInterp, int result,
Tcl_Interp *targetInterp);
+MODULE_SCOPE int TclTrimLeft(const char *bytes, int numBytes,
+ const char *trim, int numTrim);
+MODULE_SCOPE int TclTrimRight(const char *bytes, int numBytes,
+ const char *trim, int numTrim);
MODULE_SCOPE Tcl_Obj * TclpNativeToNormalized(ClientData clientData);
MODULE_SCOPE Tcl_Obj * TclpFilesystemPathType(Tcl_Obj *pathPtr);
MODULE_SCOPE Tcl_PackageInitProc *TclpFindSymbol(Tcl_Interp *interp,