mirror of
https://github.com/moparisthebest/wget
synced 2024-07-03 16:38:41 -04:00
[svn] Declare hash_table_get_pair and hash_table_count.
This commit is contained in:
parent
cd1423a478
commit
452c0bb9f7
@ -1,3 +1,7 @@
|
|||||||
|
2001-04-12 Hrvoje Niksic <hniksic@arsdigita.com>
|
||||||
|
|
||||||
|
* hash.h: Declare hash_table_get_pair and hash_table_count.
|
||||||
|
|
||||||
2001-04-12 Hrvoje Niksic <hniksic@arsdigita.com>
|
2001-04-12 Hrvoje Niksic <hniksic@arsdigita.com>
|
||||||
|
|
||||||
* cookies.c: Declare http_atotm.
|
* cookies.c: Declare http_atotm.
|
||||||
|
@ -36,14 +36,20 @@ struct hash_table *hash_table_new PARAMS ((int,
|
|||||||
int (*) (const void *,
|
int (*) (const void *,
|
||||||
const void *)));
|
const void *)));
|
||||||
void hash_table_destroy PARAMS ((struct hash_table *));
|
void hash_table_destroy PARAMS ((struct hash_table *));
|
||||||
|
|
||||||
void *hash_table_get PARAMS ((struct hash_table *, const void *));
|
void *hash_table_get PARAMS ((struct hash_table *, const void *));
|
||||||
|
int hash_table_get_pair PARAMS ((struct hash_table *, const void *,
|
||||||
|
void *, void *));
|
||||||
int hash_table_exists PARAMS ((struct hash_table *, const void *));
|
int hash_table_exists PARAMS ((struct hash_table *, const void *));
|
||||||
|
|
||||||
void hash_table_put PARAMS ((struct hash_table *, const void *, void *));
|
void hash_table_put PARAMS ((struct hash_table *, const void *, void *));
|
||||||
int hash_table_remove PARAMS ((struct hash_table *, const void *));
|
int hash_table_remove PARAMS ((struct hash_table *, const void *));
|
||||||
void hash_table_clear PARAMS ((struct hash_table *));
|
void hash_table_clear PARAMS ((struct hash_table *));
|
||||||
|
|
||||||
void hash_table_map PARAMS ((struct hash_table *,
|
void hash_table_map PARAMS ((struct hash_table *,
|
||||||
int (*) (void *, void *, void *),
|
int (*) (void *, void *, void *),
|
||||||
void *));
|
void *));
|
||||||
|
int hash_table_count PARAMS ((struct hash_table *));
|
||||||
|
|
||||||
unsigned long string_hash PARAMS ((const void *));
|
unsigned long string_hash PARAMS ((const void *));
|
||||||
int string_cmp PARAMS ((const void *, const void *));
|
int string_cmp PARAMS ((const void *, const void *));
|
||||||
|
Loading…
Reference in New Issue
Block a user