summaryrefslogtreecommitdiff
path: root/ACE/ace/ACE.h
diff options
context:
space:
mode:
authormitza <mitza@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2008-11-14 19:23:46 +0000
committermitza <mitza@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2008-11-14 19:23:46 +0000
commit90edb5747b878d602967a8f8fa786df1ee216859 (patch)
treed01ebd50de5f5dd515340cdf2ac2d86dd6966422 /ACE/ace/ACE.h
parent346090b1fd365390369ccfc6c597633ea5fc17de (diff)
downloadATCD-90edb5747b878d602967a8f8fa786df1ee216859.tar.gz
ChangeLogTag: Fri Nov 14 19:17:35 UTC 2008 Adam Mitz <mitza@ociweb.com>
Diffstat (limited to 'ACE/ace/ACE.h')
-rw-r--r--ACE/ace/ACE.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/ACE/ace/ACE.h b/ACE/ace/ACE.h
index 072bc3781d7..7c73d527397 100644
--- a/ACE/ace/ACE.h
+++ b/ACE/ace/ACE.h
@@ -90,7 +90,13 @@ namespace ACE
/// Simple wildcard matching function supporting '*' and '?'
/// return true if string s matches pattern.
- extern ACE_Export bool wild_match(const char* s, const char* pattern, bool case_sensitive = true);
+ /// If character_classes is true, '[' is treated as a wildcard character
+ /// as described in the fnmatch() POSIX API. The following POSIX "bracket
+ /// expression" features are not implemented: collating symbols, equivalence
+ /// class expressions, and character class expressions. The POSIX locale is
+ /// assumed.
+ extern ACE_Export bool wild_match(const char* s, const char* pattern,
+ bool case_sensitive = true, bool character_classes = false);
/**
* @name I/O operations