summaryrefslogtreecommitdiff
path: root/include/apr_fnmatch.h
diff options
context:
space:
mode:
authorGarrett Rooney <rooneg@apache.org>2006-09-18 16:16:31 +0000
committerGarrett Rooney <rooneg@apache.org>2006-09-18 16:16:31 +0000
commit959025ca6181b91e8b1d9390123fe6302da3ac5d (patch)
treeb96a021536b0124df5edce0c94c209c30b7e0a9f /include/apr_fnmatch.h
parentb2f32b94e5675b8d24de11332e9cfc25b691b544 (diff)
downloadapr-959025ca6181b91e8b1d9390123fe6302da3ac5d.tar.gz
Document the variant of globbing implemented by apr_fnmatch.
Submitted by: David Glasser <glasser mit.edu> Tweaked by: me * include/apr_fnmatch.h (apr_fnmatch): Describe the recognized metacharacters, etc. * CHANGES: Note change. git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@447453 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/apr_fnmatch.h')
-rw-r--r--include/apr_fnmatch.h47
1 files changed, 44 insertions, 3 deletions
diff --git a/include/apr_fnmatch.h b/include/apr_fnmatch.h
index 7a2811aac..ef6d0b250 100644
--- a/include/apr_fnmatch.h
+++ b/include/apr_fnmatch.h
@@ -66,16 +66,57 @@ extern "C" {
/**
* Try to match the string to the given pattern, return APR_SUCCESS if
- * match, else return APR_FNM_NOMATCH.
+ * match, else return APR_FNM_NOMATCH. Note that there is no such thing as
+ * an illegal pattern.
+ *
+ * With all flags unset, a pattern is interpreted as such:
+ *
+ * PATTERN: Backslash followed by any character, including another
+ * backslash.<br/>
+ * MATCHES: That character exactly.
+ *
+ * <p>
+ * PATTERN: ?<br/>
+ * MATCHES: Any single character.
+ * </p>
+ *
+ * <p>
+ * PATTERN: *<br/>
+ * MATCHES: Any sequence of zero or more characters. (Note that multiple
+ * *s in a row are equivalent to one.)
+ *
+ * PATTERN: Any character other than \?*[ or a \ at the end of the pattern<br/>
+ * MATCHES: That character exactly. (Case sensitive.)
+ *
+ * PATTERN: [ followed by a class description followed by ]<br/>
+ * MATCHES: A single character described by the class description.
+ * (Never matches, if the class description reaches until the
+ * end of the string without a ].) If the first character of
+ * the class description is ^ or !, the sense of the description
+ * is reversed. The rest of the class description is a list of
+ * single characters or pairs of characters separated by -. Any
+ * of those characters can have a backslash in front of them,
+ * which is ignored; this lets you use the characters ] and -
+ * in the character class, as well as ^ and ! at the
+ * beginning. The pattern matches a single character if it
+ * is one of the listed characters or falls into one of the
+ * listed ranges (inclusive, case sensitive). Ranges with
+ * the first character larger than the second are legal but
+ * never match. Edge cases: [] never matches, and [^] and [!]
+ * always match without consuming a character.
+ *
+ * Note that these patterns attempt to match the entire string, not
+ * just find a substring matching the pattern.
+ *
* @param pattern The pattern to match to
* @param strings The string we are trying to match
* @param flags flags to use in the match. Bitwise OR of:
- * <PRE>
+ * <pre>
* APR_FNM_NOESCAPE Disable backslash escaping
* APR_FNM_PATHNAME Slash must be matched by slash
* APR_FNM_PERIOD Period must be matched by period
* APR_FNM_CASE_BLIND Compare characters case-insensitively.
- * </PRE>
+ * </pre>
*/
APR_DECLARE(apr_status_t) apr_fnmatch(const char *pattern,