blob: 0fb2e14ca16a90dd55b19112271124c911b67338 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
/*
* Tiny hashmap implementation.
* Copyright (c) 2023-2024, Quinn Stephens and the OSMORA team.
* Provided under the BSD 3-Clause license.
*/
#include <stddef.h>
#include "hashmap.h"
void
hashmap_add(struct hashmap *map, struct hashmap_entry *entry)
{
list_prepend(&map->rows[entry->hash % map->n_rows], &entry->list_entry);
}
struct hashmap_entry *
hashmap_find(struct hashmap *map, hash_t hash)
{
struct hashmap_entry *head, *entry;
entry = head = (struct hashmap_entry*)(map->rows[hash % map->n_rows].head);
do {
if (entry->hash == hash) {
return entry;
}
entry = (struct hashmap_entry*)(entry->list_entry.next);
} while (entry != head);
return NULL;
}
void
hashmap_init(struct hashmap *map)
{
for (size_t r = 0; r < map->n_rows; r++) {
list_init(&map->rows[r]);
}
}
|