summaryrefslogtreecommitdiff
path: root/include/apr_hash.h
diff options
context:
space:
mode:
authorgstein <gstein@13f79535-47bb-0310-9956-ffa450edef68>2001-01-11 08:37:50 +0000
committergstein <gstein@13f79535-47bb-0310-9956-ffa450edef68>2001-01-11 08:37:50 +0000
commit75f505ba001a053900fcaf389f0340bf349f9a7a (patch)
treee0e183db3f6f2909b858e2c631ef139fcb59dde6 /include/apr_hash.h
parent528de411b7590fb002e78a5ea42100856e9ae978 (diff)
downloadlibapr-75f505ba001a053900fcaf389f0340bf349f9a7a.tar.gz
heh. there is a simpler way to do this...
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@61047 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/apr_hash.h')
-rw-r--r--include/apr_hash.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/apr_hash.h b/include/apr_hash.h
index 2bc023b87..15cdab7b3 100644
--- a/include/apr_hash.h
+++ b/include/apr_hash.h
@@ -174,12 +174,12 @@ APR_DECLARE(void) apr_hash_this(apr_hash_index_t *hi, const void **key,
apr_size_t *klen, void **val);
/**
- * Get the number of keys in the hash table.
+ * Get the number of key/value pairs in the hash table.
* @param ht The hash table
- * @param count Return pointer for the number of keys
+ * @return The number of key/value pairs in the hash table.
* @deffunc void apr_hash_count(apr_hash_t *ht, apr_size_t *count);
*/
-APR_DECLARE(void) apr_hash_count(apr_hash_t *ht, apr_size_t *count);
+APR_DECLARE(apr_size_t) apr_hash_count(apr_hash_t *ht);
#ifdef __cplusplus