mirror of
https://github.com/apache/httpd.git
synced 2025-08-01 07:26:57 +03:00
Forgotten file needed for r1612934.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1612940 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
@ -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
|
||||
|
Reference in New Issue
Block a user