diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2013-05-21 09:27:15 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2013-05-21 09:27:15 (GMT) |
commit | f193acf08ce4f3fe6db1cb79ab3589d037e5853c (patch) | |
tree | afc89006f3988a24590c5ae650312ddb2bbf5231 /generic/tclInt.h | |
parent | bf486a2007f9d3d45855d43e623ad85d29bcd0b7 (diff) | |
download | tcl-f193acf08ce4f3fe6db1cb79ab3589d037e5853c.zip tcl-f193acf08ce4f3fe6db1cb79ab3589d037e5853c.tar.gz tcl-f193acf08ce4f3fe6db1cb79ab3589d037e5853c.tar.bz2 |
Proposed solution for 3613609: lsort -nocase does not sort non-ASCII correctly
Diffstat (limited to 'generic/tclInt.h')
-rw-r--r-- | generic/tclInt.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/generic/tclInt.h b/generic/tclInt.h index 92251fe..dc28b97 100644 --- a/generic/tclInt.h +++ b/generic/tclInt.h @@ -2762,6 +2762,7 @@ MODULE_SCOPE Tcl_WideInt TclpGetWideClicks(void); MODULE_SCOPE double TclpWideClicksToNanoseconds(Tcl_WideInt clicks); #endif MODULE_SCOPE Tcl_Obj * TclDisassembleByteCodeObj(Tcl_Obj *objPtr); +MODULE_SCOPE int TclUtfCasecmp(CONST char *cs, CONST char *ct); /* *---------------------------------------------------------------- |