summaryrefslogtreecommitdiff
path: root/include/ap_regex.h
diff options
context:
space:
mode:
authorChristophe Jaillet <jailletc36@apache.org>2014-05-29 06:20:36 +0000
committerChristophe Jaillet <jailletc36@apache.org>2014-05-29 06:20:36 +0000
commit147c51bdbae65b9e088ca72de738004f05677c8b (patch)
treecf5e012507bcc0ee1bbbe0f8118aceabab1360ea /include/ap_regex.h
parentf176f5d4c017de1383894050563146f12cb8b4be (diff)
downloadhttpd-147c51bdbae65b9e088ca72de738004f05677c8b.tar.gz
Doxygen fix + alignment + typo
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1598207 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/ap_regex.h')
-rw-r--r--include/ap_regex.h23
1 files changed, 11 insertions, 12 deletions
diff --git a/include/ap_regex.h b/include/ap_regex.h
index 7fed5ff077..a205d5ea6c 100644
--- a/include/ap_regex.h
+++ b/include/ap_regex.h
@@ -65,19 +65,19 @@ extern "C" {
/* Options for ap_regcomp, ap_regexec, and ap_rxplus versions: */
-#define AP_REG_ICASE 0x01 /** use a case-insensitive match */
-#define AP_REG_NEWLINE 0x02 /** don't match newlines against '.' etc */
-#define AP_REG_NOTBOL 0x04 /** ^ will not match against start-of-string */
-#define AP_REG_NOTEOL 0x08 /** $ will not match against end-of-string */
+#define AP_REG_ICASE 0x01 /**< use a case-insensitive match */
+#define AP_REG_NEWLINE 0x02 /**< don't match newlines against '.' etc */
+#define AP_REG_NOTBOL 0x04 /**< ^ will not match against start-of-string */
+#define AP_REG_NOTEOL 0x08 /**< $ will not match against end-of-string */
-#define AP_REG_EXTENDED (0) /** unused */
-#define AP_REG_NOSUB (0) /** unused */
+#define AP_REG_EXTENDED (0) /**< unused */
+#define AP_REG_NOSUB (0) /**< unused */
-#define AP_REG_MULTI 0x10 /* perl's /g (needs fixing) */
-#define AP_REG_NOMEM 0x20 /* nomem in our code */
-#define AP_REG_DOTALL 0x40 /* perl's /s flag */
+#define AP_REG_MULTI 0x10 /**< perl's /g (needs fixing) */
+#define AP_REG_NOMEM 0x20 /**< nomem in our code */
+#define AP_REG_DOTALL 0x40 /**< perl's /s flag */
-#define AP_REG_MATCH "MATCH_" /** suggested prefix for ap_regname */
+#define AP_REG_MATCH "MATCH_" /**< suggested prefix for ap_regname */
/* Error values: */
enum {
@@ -246,5 +246,4 @@ AP_DECLARE(char*) ap_rxplus_pmatch(apr_pool_t *pool, ap_rxplus_t *rx, int n);
} /* extern "C" */
#endif
-#endif /* AP_REGEX_T */
-
+#endif /* AP_REGEX_H */