Defines | |
#define | APR_FNM_NOMATCH 1 /**< Match failed. */ |
#define | APR_FNM_NOESCAPE 0x01 /**< Disable backslash escaping. */ |
#define | APR_FNM_PATHNAME 0x02 /**< Slash must be matched by slash. */ |
#define | APR_FNM_PERIOD 0x04 /**< Period must be matched by period. */ |
#define | APR_FNM_CASE_BLIND |
Functions | |
apr_status_t | apr_fnmatch (const char *pattern, const char *strings, int flags) |
int | apr_fnmatch_test (const char *pattern) |
apr_status_t | apr_match_glob (const char *pattern, apr_array_header_t **result, apr_pool_t *p) |
|
Value: 0x08 /**< Compare characters case-insensitively. * @remark This flag is an Apache addition */
|
|
Disable backslash escaping. |
|
Match failed. |
|
Slash must be matched by slash. |
|
Period must be matched by period. |
|
Try to match the string to the given pattern, return APR_SUCCESS if match, else return APR_FNM_NOMATCH.
|
|
Determine if the given pattern is a regular expression.
|
|
Find all files that match a specified pattern.
|