diff options
author | dougm <dougm@13f79535-47bb-0310-9956-ffa450edef68> | 2000-08-02 05:26:45 +0000 |
---|---|---|
committer | dougm <dougm@13f79535-47bb-0310-9956-ffa450edef68> | 2000-08-02 05:26:45 +0000 |
commit | 8fcf6e0fadd7ec31d02e7249dc69922b24747c11 (patch) | |
tree | 4da0bfd73d36292921960aaabc877a57e680b8c4 /include/apr_fnmatch.h | |
parent | 5198c260c1982414023e984799ce1c3b04bb6b43 (diff) | |
download | libapr-8fcf6e0fadd7ec31d02e7249dc69922b24747c11.tar.gz |
prefix libapr functions and types with apr_
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@60470 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/apr_fnmatch.h')
-rw-r--r-- | include/apr_fnmatch.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/apr_fnmatch.h b/include/apr_fnmatch.h index b04e679cf..e15663337 100644 --- a/include/apr_fnmatch.h +++ b/include/apr_fnmatch.h @@ -66,19 +66,19 @@ extern "C" { * FNM_PERIOD -- Period must be matched by period * FNM_CASE_BLIND -- Compare characters case-insensitively. * </PRE> - * @deffunc ap_status_t ap_fnmatch(const char *pattern, const char *strings, int flags) + * @deffunc apr_status_t apr_fnmatch(const char *pattern, const char *strings, int flags) */ -APR_EXPORT(ap_status_t) ap_fnmatch(const char *pattern, const char *strings, +APR_EXPORT(apr_status_t) apr_fnmatch(const char *pattern, const char *strings, int flags); /** * Determine if the given pattern is a regular expression. * @param pattern The pattern to search for glob characters. * @return non-zero if pattern has any glob characters in it - * @deffunc int ap_is_fnmatch(const char *pattern) + * @deffunc int apr_is_fnmatch(const char *pattern) */ -APR_EXPORT(int) ap_is_fnmatch(const char *pattern); +APR_EXPORT(int) apr_is_fnmatch(const char *pattern); #ifdef __cplusplus } |