summaryrefslogtreecommitdiff
path: root/lib/hash.h
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2003-08-14 15:05:25 +0000
committerDaniel Stenberg <daniel@haxx.se>2003-08-14 15:05:25 +0000
commit68a4aa6773bffce907741bbf70962c932c1ab599 (patch)
tree30a35118119d207c01038955f6629e4dea79f1c4 /lib/hash.h
parent905b160097be04d44ff23092c2d161e6badcc172 (diff)
downloadcurl-68a4aa6773bffce907741bbf70962c932c1ab599.tar.gz
new proto for Curl_hash_init
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 e0b826304..03c771a47 100644
--- a/lib/hash.h
+++ b/lib/hash.h
@@ -45,7 +45,7 @@ typedef struct _curl_hash_element {
} curl_hash_element;
-void Curl_hash_init(curl_hash *, int, curl_hash_dtor);
+int Curl_hash_init(curl_hash *, int, curl_hash_dtor);
curl_hash *Curl_hash_alloc(int, curl_hash_dtor);
int Curl_hash_add(curl_hash *, char *, size_t, const void *);
int Curl_hash_delete(curl_hash *h, char *key, size_t key_len);