libhmap-c

C hashmap library
git clone https://git.sinitax.com/sinitax/libhmap-c
Log | Files | Refs | Submodules | LICENSE | sfeed.txt

commit a4c68704cb838e3fe66b2eb4183701a6759956a2
parent 3b486140d8b81ef57051cb13050851835da555bf
Author: Louis Burda <quent.burda@gmail.com>
Date:   Mon, 20 Mar 2023 01:44:12 +0100

Add _alloc and _free to exposed symbol set

Diffstat:
Mlibhashmap.api | 2++
Mlibhashmap.lds | 4+++-
2 files changed, 5 insertions(+), 1 deletion(-)

diff --git a/libhashmap.api b/libhashmap.api @@ -1,5 +1,7 @@ hashmap_init hashmap_deinit +hashmap_alloc +hashmap_free hashmap_copy hashmap_swap diff --git a/libhashmap.lds b/libhashmap.lds @@ -1,6 +1,8 @@ -LIBHASHMAP_1.2 { +LIBHASHMAP_1.2.1 { hashmap_init; hashmap_deinit; + hashmap_alloc; + hashmap_free; hashmap_copy; hashmap_swap;