summaryrefslogtreecommitdiff
path: root/include/apr_md4.h
diff options
context:
space:
mode:
authorBojan Smojver <bojan@apache.org>2009-07-16 04:52:56 +0000
committerBojan Smojver <bojan@apache.org>2009-07-16 04:52:56 +0000
commita8a38fa8c6aee51481b3f93ebc6c0a7dbc385191 (patch)
tree0c1c98ecda582dad96c430c26da47dc11375a87e /include/apr_md4.h
parentca371098d7183a23cea08a7605d9a95926864a0a (diff)
downloadapr-a8a38fa8c6aee51481b3f93ebc6c0a7dbc385191.tar.gz
Convert various APU_DECLARE into APR_DECLARE.
git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@794523 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/apr_md4.h')
-rw-r--r--include/apr_md4.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/include/apr_md4.h b/include/apr_md4.h
index 43fb33e30..f6bcfc2c4 100644
--- a/include/apr_md4.h
+++ b/include/apr_md4.h
@@ -81,7 +81,7 @@ struct apr_md4_ctx_t {
* MD4 Initialize. Begins an MD4 operation, writing a new context.
* @param context The MD4 context to initialize.
*/
-APU_DECLARE(apr_status_t) apr_md4_init(apr_md4_ctx_t *context);
+APR_DECLARE(apr_status_t) apr_md4_init(apr_md4_ctx_t *context);
#if APR_HAS_XLATE
/**
@@ -90,7 +90,7 @@ APU_DECLARE(apr_status_t) apr_md4_init(apr_md4_ctx_t *context);
* @param context The MD4 content to set the translation for.
* @param xlate The translation handle to use for this MD4 context
*/
-APU_DECLARE(apr_status_t) apr_md4_set_xlate(apr_md4_ctx_t *context,
+APR_DECLARE(apr_status_t) apr_md4_set_xlate(apr_md4_ctx_t *context,
apr_xlate_t *xlate);
#else
#define apr_md4_set_xlate(context, xlate) APR_ENOTIMPL
@@ -103,7 +103,7 @@ APU_DECLARE(apr_status_t) apr_md4_set_xlate(apr_md4_ctx_t *context,
* @param input next message block to update
* @param inputLen The length of the next message block
*/
-APU_DECLARE(apr_status_t) apr_md4_update(apr_md4_ctx_t *context,
+APR_DECLARE(apr_status_t) apr_md4_update(apr_md4_ctx_t *context,
const unsigned char *input,
apr_size_t inputLen);
@@ -113,7 +113,7 @@ APU_DECLARE(apr_status_t) apr_md4_update(apr_md4_ctx_t *context,
* @param digest The final MD4 digest
* @param context The MD4 content we are finalizing.
*/
-APU_DECLARE(apr_status_t) apr_md4_final(
+APR_DECLARE(apr_status_t) apr_md4_final(
unsigned char digest[APR_MD4_DIGESTSIZE],
apr_md4_ctx_t *context);
@@ -123,7 +123,7 @@ APU_DECLARE(apr_status_t) apr_md4_final(
* @param input message block to use
* @param inputLen The length of the message block
*/
-APU_DECLARE(apr_status_t) apr_md4(unsigned char digest[APR_MD4_DIGESTSIZE],
+APR_DECLARE(apr_status_t) apr_md4(unsigned char digest[APR_MD4_DIGESTSIZE],
const unsigned char *input,
apr_size_t inputLen);