123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153 |
- #ifndef _APR_FNMATCH_H_
- #define _APR_FNMATCH_H_
- #include "apr_errno.h"
- #include "apr_tables.h"
- #ifdef __cplusplus
- extern "C" {
- #endif
- #define APR_FNM_NOMATCH 1
-
- #define APR_FNM_NOESCAPE 0x01
- #define APR_FNM_PATHNAME 0x02
- #define APR_FNM_PERIOD 0x04
- #define APR_FNM_CASE_BLIND 0x08
- APR_DECLARE(apr_status_t) apr_fnmatch(const char *pattern,
- const char *strings, int flags);
- APR_DECLARE(int) apr_fnmatch_test(const char *pattern);
- APR_DECLARE(apr_status_t) apr_match_glob(const char *dir_pattern,
- apr_array_header_t **result,
- apr_pool_t *p);
- #ifdef __cplusplus
- }
- #endif
- #endif
|