From: Jérémie Astor Date: Sun, 16 May 2021 21:44:54 +0000 (+0200) Subject: :fire: Clean include X-Git-Tag: nightly~642 X-Git-Url: http://10.10.0.4:5575/?a=commitdiff_plain;h=f62a05f22844fe2361e52b56204b349d13170067;p=gwion.git :fire: Clean include --- diff --git a/include/hashmap.c b/include/hashmap.c deleted file mode 100644 index 24bd8acf..00000000 --- a/include/hashmap.c +++ /dev/null @@ -1,16 +0,0 @@ -#include -#include -#include "gwion_util.h" - -typedef struct HashMapValue_ HashMapValue; - -typedef struct HashMap_ *HashMap; - -ANN HashMap new_hashmap(MemPool p, const size_t key_size, const size_t val_size); - -ANN bool hashmap_find(const HashMap hmap, m_bit* key, m_bit *ret_val); - -ANN bool hashmap_remove(const HashMap hmap, m_bit *key, m_bit *ret_val); - -ANN void hashmap_set(const HashMap hmap, m_bit *key, m_bit *val); -ANN void free_hashmap(MemPool p, HashMap a); diff --git a/include/hashmap.h b/include/hashmap.h deleted file mode 100644 index b83c6741..00000000 --- a/include/hashmap.h +++ /dev/null @@ -1,9 +0,0 @@ -#ifndef MAP_H -#define HMAP_H__ - -ANN HashMap new_hashmap(MemPool p, const size_t key_size, const size_t val_size); -ANN bool hashmap_find(const HashMap hmap, m_bit* key, m_bit *ret_val) {ANN bool hashmap_remove(const HashMap hmap, m_bit *key, m_bit *ret_val); -ANN void hashmap_set(const HashMap hmap, m_bit *key, m_bit *val); -ANN void free_hashmap(MemPool p, HashMap a); - -#endif