summaryrefslogtreecommitdiffstats
path: root/doc/StrMatch.3
diff options
context:
space:
mode:
authorhobbs <hobbs>2000-05-08 22:05:00 (GMT)
committerhobbs <hobbs>2000-05-08 22:05:00 (GMT)
commite9772997bffaf8c03335012651a479151207163d (patch)
treeddd6dafa99b52df176a84ac211aa488073215a44 /doc/StrMatch.3
parentb1b2bcdcf6c7b763553901fdb1d5e112209f91f2 (diff)
downloadtcl-e9772997bffaf8c03335012651a479151207163d.zip
tcl-e9772997bffaf8c03335012651a479151207163d.tar.gz
tcl-e9772997bffaf8c03335012651a479151207163d.tar.bz2
removed VS/VE 8.1 macros
Diffstat (limited to 'doc/StrMatch.3')
-rw-r--r--doc/StrMatch.39
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