summaryrefslogtreecommitdiff
path: root/buckets/apr_buckets_refcount.c
diff options
context:
space:
mode:
authorwrowe <wrowe@13f79535-47bb-0310-9956-ffa450edef68>2001-01-19 07:02:02 +0000
committerwrowe <wrowe@13f79535-47bb-0310-9956-ffa450edef68>2001-01-19 07:02:02 +0000
commitf61719684030f395193fade514ba1ddf009c2a59 (patch)
tree41015bfd8cf4ec7541f98cf565d80f651ba216d9 /buckets/apr_buckets_refcount.c
parentfc3b0a73feefaed59ed295bccb8a44b987911ca8 (diff)
downloadlibapr-util-f61719684030f395193fade514ba1ddf009c2a59.tar.gz
apr-util rename of ap_ symbols to apr_ notation. Part 2 of the change.
git-svn-id: http://svn.apache.org/repos/asf/apr/apr-util/trunk@58050 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'buckets/apr_buckets_refcount.c')
-rw-r--r--buckets/apr_buckets_refcount.c32
1 files changed, 16 insertions, 16 deletions
diff --git a/buckets/apr_buckets_refcount.c b/buckets/apr_buckets_refcount.c
index b37bd091..03be68dc 100644
--- a/buckets/apr_buckets_refcount.c
+++ b/buckets/apr_buckets_refcount.c
@@ -56,19 +56,19 @@
#include "apr_errno.h"
-#include "ap_buckets.h"
+#include "apr_buckets.h"
-APU_DECLARE_NONSTD(apr_status_t) ap_bucket_split_shared(ap_bucket *a, apr_off_t point)
+APU_DECLARE_NONSTD(apr_status_t) apr_bucket_split_shared(apr_bucket *a, apr_off_t point)
{
- ap_bucket *b;
- ap_bucket_shared *ad, *bd;
+ apr_bucket *b;
+ apr_bucket_shared *ad, *bd;
apr_status_t rv;
if (point < 0 || point > a->length) {
return APR_EINVAL;
}
- rv = ap_bucket_copy_shared(a, &b);
+ rv = apr_bucket_copy_shared(a, &b);
if (rv != APR_SUCCESS) {
return rv;
}
@@ -81,16 +81,16 @@ APU_DECLARE_NONSTD(apr_status_t) ap_bucket_split_shared(ap_bucket *a, apr_off_t
b->length -= point;
bd->start += point;
- AP_BUCKET_INSERT_AFTER(a, b);
+ APR_BUCKET_INSERT_AFTER(a, b);
return APR_SUCCESS;
}
-APU_DECLARE_NONSTD(apr_status_t) ap_bucket_copy_shared(ap_bucket *a, ap_bucket **c)
+APU_DECLARE_NONSTD(apr_status_t) apr_bucket_copy_shared(apr_bucket *a, apr_bucket **c)
{
- ap_bucket *b;
- ap_bucket_shared *ad, *bd;
- ap_bucket_refcount *r;
+ apr_bucket *b;
+ apr_bucket_shared *ad, *bd;
+ apr_bucket_refcount *r;
b = malloc(sizeof(*b));
if (b == NULL) {
@@ -114,10 +114,10 @@ APU_DECLARE_NONSTD(apr_status_t) ap_bucket_copy_shared(ap_bucket *a, ap_bucket *
return APR_SUCCESS;
}
-APU_DECLARE(void *) ap_bucket_destroy_shared(void *data)
+APU_DECLARE(void *) apr_bucket_destroy_shared(void *data)
{
- ap_bucket_shared *s = data;
- ap_bucket_refcount *r = s->data;
+ apr_bucket_shared *s = data;
+ apr_bucket_refcount *r = s->data;
free(s);
r->refcount -= 1;
@@ -129,11 +129,11 @@ APU_DECLARE(void *) ap_bucket_destroy_shared(void *data)
}
}
-APU_DECLARE(ap_bucket *) ap_bucket_make_shared(ap_bucket *b, void *data,
+APU_DECLARE(apr_bucket *) apr_bucket_make_shared(apr_bucket *b, void *data,
apr_off_t start, apr_off_t end)
{
- ap_bucket_shared *s;
- ap_bucket_refcount *r = data;
+ apr_bucket_shared *s;
+ apr_bucket_refcount *r = data;
s = malloc(sizeof(*s));
if (s == NULL) {