diff options
author | hobbs <hobbs> | 2003-02-18 02:25:41 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 2003-02-18 02:25:41 (GMT) |
commit | 4ab5c4158044ba81cf3aa93c71d446fddd9c7ca5 (patch) | |
tree | 4897dca0fb72c73e8c8bee4e5d6b292195b07662 /generic/tclInt.decls | |
parent | d86b1af8bec78fdbcc8bf65bc205fd287e19fd5d (diff) | |
download | tcl-4ab5c4158044ba81cf3aa93c71d446fddd9c7ca5.zip tcl-4ab5c4158044ba81cf3aa93c71d446fddd9c7ca5.tar.gz tcl-4ab5c4158044ba81cf3aa93c71d446fddd9c7ca5.tar.bz2 |
* generic/tclExecute.c (TclExecuteByteCode INST_STR_MATCH):
* generic/tclCmdMZ.c (Tcl_StringObjCmd STR_MATCH):
* generic/tclUtf.c (TclUniCharMatch):
* generic/tclInt.decls: add private TclUniCharMatch function that
* generic/tclIntDecls.h: does string match on counted unicode
* generic/tclStubInit.c: strings. Tcl_UniCharCaseMatch has the
* tests/string.test: failing that it can't handle strings or
* tests/stringComp.test: patterns with embedded NULLs. Added
tests that actually try strings/pats with NULLs. TclUniCharMatch
should be TIPed and made public in the next minor version rev.
Diffstat (limited to 'generic/tclInt.decls')
-rw-r--r-- | generic/tclInt.decls | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/generic/tclInt.decls b/generic/tclInt.decls index f2b2f99..8a68f70 100644 --- a/generic/tclInt.decls +++ b/generic/tclInt.decls @@ -12,7 +12,7 @@ # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAIMER OF ALL WARRANTIES. # -# RCS: @(#) $Id: tclInt.decls,v 1.58 2002/12/06 23:22:59 hobbs Exp $ +# RCS: @(#) $Id: tclInt.decls,v 1.59 2003/02/18 02:25:45 hobbs Exp $ library tcl @@ -690,6 +690,13 @@ declare 172 generic { int TclInThreadExit(void) } +# added for 8.4.2 + +declare 173 generic { + int TclUniCharMatch (CONST Tcl_UniChar *string, int strLen, \ + CONST Tcl_UniChar *pattern, int ptnLen, int nocase) +} + ############################################################################## # Define the platform specific internal Tcl interface. These functions are |