diff options
author | Freya Murphy <freya@freyacat.org> | 2023-12-16 11:47:59 -0500 |
---|---|---|
committer | Freya Murphy <freya@freyacat.org> | 2023-12-16 11:47:59 -0500 |
commit | 85ba301f52b1c7e1ad928803b14b6c70776f2235 (patch) | |
tree | 28902147b9bf6c393497e21b0cb21c8b957aa3e2 /src/lib.h | |
parent | fix hang on incomplete json ident (diff) | |
download | nbtvis-85ba301f52b1c7e1ad928803b14b6c70776f2235.tar.gz nbtvis-85ba301f52b1c7e1ad928803b14b6c70776f2235.tar.bz2 nbtvis-85ba301f52b1c7e1ad928803b14b6c70776f2235.zip |
use hashmap for compound tag
Diffstat (limited to '')
-rw-r--r-- | src/lib.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -9,4 +9,5 @@ __attribute__((__noreturn__, format(printf, 1, 2))) void perror_and_die(char *format, ...); void *xalloc(size_t amount); +void *xzalloc(size_t amount); void *xrealloc(void *ptr, size_t amount); |