diff options
author | dgp <dgp@users.sourceforge.net> | 2016-11-04 21:29:30 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2016-11-04 21:29:30 (GMT) |
commit | 5f1098561b5067a8f429be371166ed3b1e6189e4 (patch) | |
tree | 67179cf720569f5de357549751755dd9d0332b0e /generic/tclInt.h | |
parent | 9bbdc1599de82b388e548191a669524d9b577653 (diff) | |
download | tcl-5f1098561b5067a8f429be371166ed3b1e6189e4.zip tcl-5f1098561b5067a8f429be371166ed3b1e6189e4.tar.gz tcl-5f1098561b5067a8f429be371166ed3b1e6189e4.tar.bz2 |
First draft refactoring the [string first] functionality.
Diffstat (limited to 'generic/tclInt.h')
-rw-r--r-- | generic/tclInt.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/generic/tclInt.h b/generic/tclInt.h index 8a647f0..26592f9 100644 --- a/generic/tclInt.h +++ b/generic/tclInt.h @@ -3138,6 +3138,8 @@ MODULE_SCOPE void * TclStackRealloc(Tcl_Interp *interp, void *ptr, MODULE_SCOPE int TclStringCatObjv(Tcl_Interp *interp, int inPlace, int objc, Tcl_Obj *const objv[], Tcl_Obj **objPtrPtr); +MODULE_SCOPE int TclStringFind(Tcl_Obj *needle, Tcl_Obj *haystack, + unsigned int start); MODULE_SCOPE int TclStringMatch(const char *str, int strLen, const char *pattern, int ptnLen, int flags); MODULE_SCOPE int TclStringMatchObj(Tcl_Obj *stringObj, |