diff options
Diffstat (limited to 'include/htab.h')
-rw-r--r-- | include/htab.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/htab.h b/include/htab.h index 70a0893..7ea1730 100644 --- a/include/htab.h +++ b/include/htab.h @@ -9,7 +9,7 @@ struct htab { }; void htab_free(struct htab *htab); -int htab_init(struct htab **htab); +int htab_init(size_t nel, struct htab **htab); int htab_delete(struct htab *htab, const char *key); int htab_enter(struct htab *htab, const char *key, void *data); int htab_search(struct htab *htab, char *key, ENTRY **ep); |