diff options
author | stanton <stanton> | 1999-05-06 18:46:23 (GMT) |
---|---|---|
committer | stanton <stanton> | 1999-05-06 18:46:23 (GMT) |
commit | a23a8f73b3f2aba2722a1363e2d822018fbf504c (patch) | |
tree | 83931fceb76a5ac3644164e10b423d8a14719ee9 /generic/tclStubInit.c | |
parent | 790b81e6f748b60c1d89b7741a5ce2888d1ecc0b (diff) | |
download | tcl-a23a8f73b3f2aba2722a1363e2d822018fbf504c.zip tcl-a23a8f73b3f2aba2722a1363e2d822018fbf504c.tar.gz tcl-a23a8f73b3f2aba2722a1363e2d822018fbf504c.tar.bz2 |
* doc/Utf.3:
* generic/tclStubInit.c:
* generic/tclDecls.h:
* generic/tclUtf.c:
* generic/tcl.decls: Added Tcl_UtfNcmp and Tcl_UtfNcasecmp.
Diffstat (limited to 'generic/tclStubInit.c')
-rw-r--r-- | generic/tclStubInit.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/generic/tclStubInit.c b/generic/tclStubInit.c index 2ac795b..632f4a8 100644 --- a/generic/tclStubInit.c +++ b/generic/tclStubInit.c @@ -8,7 +8,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclStubInit.c,v 1.12 1999/04/24 01:46:52 stanton Exp $ + * RCS: @(#) $Id: tclStubInit.c,v 1.13 1999/05/06 18:46:25 stanton Exp $ */ #include "tclInt.h" @@ -684,6 +684,8 @@ TclStubs tclStubs = { Tcl_Chdir, /* 366 */ Tcl_Access, /* 367 */ Tcl_Stat, /* 368 */ + Tcl_UtfNcmp, /* 369 */ + Tcl_UtfNcasecmp, /* 370 */ }; /* !END!: Do not edit above this line. */ |