diff options
author | hobbs <hobbs@noemail.net> | 2000-05-08 22:05:00 (GMT) |
---|---|---|
committer | hobbs <hobbs@noemail.net> | 2000-05-08 22:05:00 (GMT) |
commit | 01486c58e41128217a9115b4293cb14f2afebd11 (patch) | |
tree | ddd6dafa99b52df176a84ac211aa488073215a44 /doc/StrMatch.3 | |
parent | a24a1dd606f07547aa98864dedb4ade18de1f1bf (diff) | |
download | tcl-01486c58e41128217a9115b4293cb14f2afebd11.zip tcl-01486c58e41128217a9115b4293cb14f2afebd11.tar.gz tcl-01486c58e41128217a9115b4293cb14f2afebd11.tar.bz2 |
removed VS/VE 8.1 macros
FossilOrigin-Name: bee7a325763ca5c35b042b839946a6492c02f08f
Diffstat (limited to 'doc/StrMatch.3')
-rw-r--r-- | doc/StrMatch.3 | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/doc/StrMatch.3 b/doc/StrMatch.3 index 4d13379..71c8a6b 100644 --- a/doc/StrMatch.3 +++ b/doc/StrMatch.3 @@ -5,7 +5,7 @@ '\" See the file "license.terms" for information on usage and redistribution '\" of this file, and for a DISCLAIMER OF ALL WARRANTIES. '\" -'\" RCS: @(#) $Id: StrMatch.3,v 1.3 1999/05/22 01:20:11 stanton Exp $ +'\" RCS: @(#) $Id: StrMatch.3,v 1.4 2000/05/08 22:05:00 hobbs Exp $ '\" .so man.macros .TH Tcl_StringMatch 3 8.1 Tcl "Tcl Library Procedures" @@ -18,21 +18,18 @@ Tcl_StringMatch, Tcl_StringCaseMatch \- test whether a string matches a pattern .sp int \fBTcl_StringMatch\fR(\fIstring\fR, \fIpattern\fR) -.VS 8.1 .sp -\fBTcl_StringCaseMatch\fR(\fIstring, pattern, nocase\fR) -.VE 8.1 +int +\fBTcl_StringCaseMatch\fR(\fIstring\fR, \fIpattern\fR, \fInocase\fR) .SH ARGUMENTS .AP char *string in String to test. .AP char *pattern in Pattern to match against string. May contain special characters from the set *?\e[]. -.VS 8.1 .AP int nocase in Specifies whether the match should be done case-sensitive (0) or case-insensitive (1). -.VE 8.1 .BE .SH DESCRIPTION |