diff options
author | stanton <stanton> | 1999-05-22 01:20:10 (GMT) |
---|---|---|
committer | stanton <stanton> | 1999-05-22 01:20:10 (GMT) |
commit | ac39508cf97576cd9747c5630c4a13d794663b4a (patch) | |
tree | 4b7c61e6c670f227cf4d603907157fb6246d2d50 /generic/tcl.decls | |
parent | 21bd132482f68735f5a4381934f56ee911904e87 (diff) | |
download | tcl-ac39508cf97576cd9747c5630c4a13d794663b4a.zip tcl-ac39508cf97576cd9747c5630c4a13d794663b4a.tar.gz tcl-ac39508cf97576cd9747c5630c4a13d794663b4a.tar.bz2 |
Merged changes from scriptics-tclpro-1-3-b2 branch
Diffstat (limited to 'generic/tcl.decls')
-rw-r--r-- | generic/tcl.decls | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/generic/tcl.decls b/generic/tcl.decls index d77b076..ae5d445 100644 --- a/generic/tcl.decls +++ b/generic/tcl.decls @@ -10,7 +10,7 @@ # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAIMER OF ALL WARRANTIES. # -# RCS: @(#) $Id: tcl.decls,v 1.12 1999/05/07 20:07:46 stanton Exp $ +# RCS: @(#) $Id: tcl.decls,v 1.13 1999/05/22 01:20:11 stanton Exp $ library tcl @@ -1262,6 +1262,21 @@ declare 369 generic { declare 370 generic { int Tcl_UtfNcasecmp(CONST char *s1, CONST char *s2, size_t n) } +declare 371 generic { + int Tcl_StringCaseMatch(CONST char *str, CONST char *pattern, int nocase) +} +declare 372 generic { + int Tcl_UniCharIsControl(int ch) +} +declare 373 generic { + int Tcl_UniCharIsGraph(int ch) +} +declare 374 generic { + int Tcl_UniCharIsPrint(int ch) +} +declare 375 generic { + int Tcl_UniCharIsPunct(int ch) +} ############################################################################## |