diff options
author | Freya Murphy <freya@freyacat.org> | 2023-12-17 11:10:04 -0500 |
---|---|---|
committer | Freya Murphy <freya@freyacat.org> | 2023-12-17 11:10:04 -0500 |
commit | e0eacfa9773c83850ed5169d1e889ff845180581 (patch) | |
tree | 9f8bb433404ce7e4dda1b86ca4dd5d5a2fba10e9 /src/map.h | |
parent | snbt (diff) | |
download | nbtvis-main.tar.gz nbtvis-main.tar.bz2 nbtvis-main.zip |
Diffstat (limited to 'src/map.h')
-rw-r--r-- | src/map.h | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/src/map.h b/src/map.h deleted file mode 100644 index 6672323..0000000 --- a/src/map.h +++ /dev/null @@ -1,15 +0,0 @@ -#pragma once - -#include <stdint.h> - -typedef struct tag_t tag_t; - -typedef struct { - uint32_t len; - uint32_t capacity; - tag_t *entries; -} map_t; - -void map_init(map_t *map); -void map_free(map_t *map); -void map_put(map_t *map, tag_t *tag); |