summaryrefslogtreecommitdiff
path: root/include/ap_regex.h
diff options
context:
space:
mode:
authorNick Kew <niq@apache.org>2010-09-16 01:44:09 +0000
committerNick Kew <niq@apache.org>2010-09-16 01:44:09 +0000
commita66f25dc136a47e255cc3e613896a9ef46f6315b (patch)
treebacd6fc40bad1ff9c8cad3d1de067b174b5ff28c /include/ap_regex.h
parent1038d34486ca650af83a709ab71e163ed37e562a (diff)
downloadhttpd-a66f25dc136a47e255cc3e613896a9ef46f6315b.tar.gz
Fix to apidoc comments in ap_regex
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@997560 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/ap_regex.h')
-rw-r--r--include/ap_regex.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/include/ap_regex.h b/include/ap_regex.h
index 2dbfcb35cd..91c0f49b31 100644
--- a/include/ap_regex.h
+++ b/include/ap_regex.h
@@ -100,7 +100,8 @@ typedef struct {
* Compile a regular expression.
* @param preg Returned compiled regex
* @param regex The regular expression string
- * @param cflags Must be zero (currently).
+ * @param cflags Bitwise OR of AP_REG_* flags (ICASE and NEWLINE supported,
+ * other flags are ignored)
* @return Zero on success or non-zero on error
*/
AP_DECLARE(int) ap_regcomp(ap_regex_t *preg, const char *regex, int cflags);
@@ -111,8 +112,9 @@ AP_DECLARE(int) ap_regcomp(ap_regex_t *preg, const char *regex, int cflags);
* @param string The string to match
* @param nmatch Provide information regarding the location of any matches
* @param pmatch Provide information regarding the location of any matches
- * @param eflags Bitwise OR of any of AP_REG_* flags
- * @return 0 for successful match, \p REG_NOMATCH otherwise
+ * @param eflags Bitwise OR of AP_REG_* flags (NOTBOL and NOTEOL supported,
+ * other flags are ignored)
+ * @return 0 for successful match, \p AP_REG_NOMATCH otherwise
*/
AP_DECLARE(int) ap_regexec(const ap_regex_t *preg, const char *string,
apr_size_t nmatch, ap_regmatch_t *pmatch, int eflags);