summaryrefslogtreecommitdiffstats
path: root/generic/tclInt.h
diff options
context:
space:
mode:
authordgp <dgp@noemail.net>2011-04-13 20:37:26 (GMT)
committerdgp <dgp@noemail.net>2011-04-13 20:37:26 (GMT)
commit104337c14baa65403e5c02f001fc21edd2dd6921 (patch)
tree38a0d9601b1e4a9c405bf5137cc4a1495bf10200 /generic/tclInt.h
parent83b2d09a81657b3d69cf651e188a9e559d8a2663 (diff)
parent43e921a160c0f4fd832595c395e26a99fd0c8cde (diff)
downloadtcl-104337c14baa65403e5c02f001fc21edd2dd6921.zip
tcl-104337c14baa65403e5c02f001fc21edd2dd6921.tar.gz
tcl-104337c14baa65403e5c02f001fc21edd2dd6921.tar.bz2
[Bug 3285375]: Rewrite Tcl_Concat*() and [string trim*].
FossilOrigin-Name: 7c5f3a896176a014cf63b2a5ed63352ab77dbbc6
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 53e4323..29a9316 100644
--- a/generic/tclInt.h
+++ b/generic/tclInt.h
@@ -3115,6 +3115,10 @@ MODULE_SCOPE void TclSubstParse(Tcl_Interp *interp, const char *bytes,
MODULE_SCOPE int TclSubstTokens(Tcl_Interp *interp, Tcl_Token *tokenPtr,
int count, int *tokensLeftPtr, int line,
int *clNextOuter, const char *outerScript);
+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 int TclpDlopen(Tcl_Interp *interp, Tcl_Obj *pathPtr,