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/tclDecls.h | |
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/tclDecls.h')
-rw-r--r-- | generic/tclDecls.h | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/generic/tclDecls.h b/generic/tclDecls.h index 5a2a70c..19428fe 100644 --- a/generic/tclDecls.h +++ b/generic/tclDecls.h @@ -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: tclDecls.h,v 1.10 1999/04/30 22:45:01 stanton Exp $ + * RCS: @(#) $Id: tclDecls.h,v 1.11 1999/05/06 18:46:24 stanton Exp $ */ #ifndef _TCLDECLS @@ -1123,6 +1123,12 @@ EXTERN int Tcl_Access _ANSI_ARGS_((CONST char * path, int mode)); /* 368 */ EXTERN int Tcl_Stat _ANSI_ARGS_((CONST char * path, struct stat * bufPtr)); +/* 369 */ +EXTERN int Tcl_UtfNcmp _ANSI_ARGS_((CONST char * s1, + CONST char * s2, size_t n)); +/* 370 */ +EXTERN int Tcl_UtfNcasecmp _ANSI_ARGS_((CONST char * s1, + CONST char * s2, size_t n)); typedef struct TclStubHooks { struct TclPlatStubs *tclPlatStubs; @@ -1527,6 +1533,8 @@ typedef struct TclStubs { int (*tcl_Chdir) _ANSI_ARGS_((CONST char * dirName)); /* 366 */ int (*tcl_Access) _ANSI_ARGS_((CONST char * path, int mode)); /* 367 */ int (*tcl_Stat) _ANSI_ARGS_((CONST char * path, struct stat * bufPtr)); /* 368 */ + int (*tcl_UtfNcmp) _ANSI_ARGS_((CONST char * s1, CONST char * s2, size_t n)); /* 369 */ + int (*tcl_UtfNcasecmp) _ANSI_ARGS_((CONST char * s1, CONST char * s2, size_t n)); /* 370 */ } TclStubs; #ifdef __cplusplus @@ -3007,6 +3015,14 @@ extern TclStubs *tclStubsPtr; #define Tcl_Stat \ (tclStubsPtr->tcl_Stat) /* 368 */ #endif +#ifndef Tcl_UtfNcmp +#define Tcl_UtfNcmp \ + (tclStubsPtr->tcl_UtfNcmp) /* 369 */ +#endif +#ifndef Tcl_UtfNcasecmp +#define Tcl_UtfNcasecmp \ + (tclStubsPtr->tcl_UtfNcasecmp) /* 370 */ +#endif #endif /* defined(USE_TCL_STUBS) && !defined(USE_TCL_STUB_PROCS) */ |