diff --git a/include/ap_regex.h b/include/ap_regex.h index a205d5ea6c..dbe9b24690 100644 --- a/include/ap_regex.h +++ b/include/ap_regex.h @@ -79,6 +79,12 @@ extern "C" { #define AP_REG_MATCH "MATCH_" /**< suggested prefix for ap_regname */ +/* Arguments for ap_pcre_version_string */ +enum { + AP_REG_PCRE_COMPILED = 0, /** PCRE version used during program compilation */ + AP_REG_PCRE_LOADED /** PCRE version loaded at runtime */ +}; + /* Error values: */ enum { AP_REG_ASSERT = 1, /** internal error ? */ @@ -102,6 +108,15 @@ typedef struct { /* The functions */ +/** + * Return PCRE version string. + * @param which Either AP_REG_PCRE_COMPILED (PCRE version used + * during program compilation) or AP_REG_PCRE_LOADED + * (PCRE version used at runtime) + * @return The PCRE version string + */ +AP_DECLARE(const char *) ap_pcre_version_string(int which); + /** * Compile a regular expression. * @param preg Returned compiled regex