summaryrefslogtreecommitdiff
path: root/include/apr_fnmatch.h
diff options
context:
space:
mode:
authorRyan Bloom <rbb@apache.org>2001-08-12 05:50:46 +0000
committerRyan Bloom <rbb@apache.org>2001-08-12 05:50:46 +0000
commit9be2c106b61835000934a83e916d851cc21879fa (patch)
treeb12aeb6f410c3345f4e131af02212cf5ccd50859 /include/apr_fnmatch.h
parent27a7e3be3fc91212f1d70e73fae5f7c85b7f1b54 (diff)
downloadapr-9be2c106b61835000934a83e916d851cc21879fa.tar.gz
Add the rest of the doxygen changes for APR.
Submitted by: Ian Holsman <ianh@cnet.com> git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@62147 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/apr_fnmatch.h')
-rw-r--r--include/apr_fnmatch.h32
1 files changed, 18 insertions, 14 deletions
diff --git a/include/apr_fnmatch.h b/include/apr_fnmatch.h
index c43828ea9..033deab9f 100644
--- a/include/apr_fnmatch.h
+++ b/include/apr_fnmatch.h
@@ -37,23 +37,29 @@
#ifndef _APR_FNMATCH_H_
#define _APR_FNMATCH_H_
+/**
+ * @file apr_fnmatch.h
+ * @brief APR FNMatch Functions
+ */
+/**
+ * @defgroup APR_FNMatch FNMatch Functions
+ * @ingroup APR
+ * @{
+ */
+
#include "apr_errno.h"
#ifdef __cplusplus
extern "C" {
#endif
-/**
- * @package Fnmatch functions
- */
-
-#define FNM_NOMATCH 1 /* Match failed. */
-
-#define FNM_NOESCAPE 0x01 /* Disable backslash escaping. */
-#define FNM_PATHNAME 0x02 /* Slash must be matched by slash. */
-#define FNM_PERIOD 0x04 /* Period must be matched by period. */
-/* This flag is an Apache addition */
-#define FNM_CASE_BLIND 0x08 /* Compare characters case-insensitively. */
+#define FNM_NOMATCH 1 /**< Match failed. */
+
+#define FNM_NOESCAPE 0x01 /**< Disable backslash escaping. */
+#define FNM_PATHNAME 0x02 /**< Slash must be matched by slash. */
+#define FNM_PERIOD 0x04 /**< Period must be matched by period. */
+
+#define FNM_CASE_BLIND 0x08 /**< Compare characters case-insensitively. @remark This flag is an Apache addition */
/**
* Try to match the string to the given pattern.
@@ -66,7 +72,6 @@ extern "C" {
* FNM_PERIOD Period must be matched by period
* FNM_CASE_BLIND Compare characters case-insensitively.
* </PRE>
- * @deffunc apr_status_t apr_fnmatch(const char *pattern, const char *strings, int flags)
*/
APR_DECLARE(apr_status_t) apr_fnmatch(const char *pattern,
@@ -76,12 +81,11 @@ APR_DECLARE(apr_status_t) apr_fnmatch(const char *pattern,
* Determine if the given pattern is a regular expression.
* @param pattern The pattern to search for glob characters.
* @return non-zero if pattern has any glob characters in it
- * @deffunc int apr_is_fnmatch(const char *pattern)
*/
APR_DECLARE(int) apr_is_fnmatch(const char *pattern);
#ifdef __cplusplus
}
#endif
-
+/** @} */
#endif /* !_FNMATCH_H_ */