summaryrefslogtreecommitdiff
path: root/lib/hash.h
diff options
context:
space:
mode:
authorSterling Hughes <sterling@bumblebury.com>2002-04-13 01:56:22 +0000
committerSterling Hughes <sterling@bumblebury.com>2002-04-13 01:56:22 +0000
commitbb44791bf38bf6dd0a24e50f9081f1cc1693ec67 (patch)
tree1b4d042d203ac5196046e876fd7c9ce62e633a8b /lib/hash.h
parent9ebcfe9dff762ee1f294b851fd2872fab032455a (diff)
downloadcurl-bb44791bf38bf6dd0a24e50f9081f1cc1693ec67.tar.gz
Add protos and change return value of curl_hash_count....
Diffstat (limited to 'lib/hash.h')
-rw-r--r--lib/hash.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/hash.h b/lib/hash.h
index 6aa71b318..6c74ed2d3 100644
--- a/lib/hash.h
+++ b/lib/hash.h
@@ -51,7 +51,7 @@ int curl_hash_add(curl_hash *, char *, size_t, const void *);
int curl_hash_delete(curl_hash *h, char *key, size_t key_len);
int curl_hash_find(curl_hash *, char *, size_t, void **p);
void curl_hash_apply(curl_hash *h, void *user, void (*cb)(void *, curl_hash_element *));
-size_t curl_hash_count(curl_hash *h);
+int curl_hash_count(curl_hash *h);
void curl_hash_clean(curl_hash *h);
void curl_hash_destroy(curl_hash *h);