hash_table.h 741 B

1234567891011121314151617181920212223242526272829
  1. #ifndef HTABLE_H_
  2. #define HTABLE_H_
  3. #include <stdbool.h>
  4. #include <stdint.h>
  5. struct hash_table {
  6. void *buf;
  7. int64_t size;
  8. int64_t cap;
  9. int64_t taken;
  10. void *begin;
  11. int64_t elemsz;
  12. uint64_t (*hash)(void *);
  13. bool (*eq)(void *, void *);
  14. };
  15. typedef struct hash_table hash_table_t;
  16. void init_hash_table(hash_table_t *ht, int64_t elemsz, int64_t cap,
  17. uint64_t (*hash)(void *), bool (*eq)(void *, void *));
  18. bool hash_table_insert(hash_table_t *ht, void *elem);
  19. void hash_table_remove(hash_table_t *ht, void *iter);
  20. // return a iterator
  21. void *hash_table_find(hash_table_t *ht, void *elem);
  22. void *hash_table_begin(hash_table_t *ht);
  23. void *hash_table_next(hash_table_t *ht, void *iter);
  24. #endif