]> Nishi Git Mirror - gwion.git/commitdiff
:fire: Clean include
authorJérémie Astor <fennecdjay@gmail.com>
Sun, 16 May 2021 21:44:54 +0000 (23:44 +0200)
committerJérémie Astor <fennecdjay@gmail.com>
Sun, 16 May 2021 21:44:54 +0000 (23:44 +0200)
include/hashmap.c [deleted file]
include/hashmap.h [deleted file]

diff --git a/include/hashmap.c b/include/hashmap.c
deleted file mode 100644 (file)
index 24bd8ac..0000000
+++ /dev/null
@@ -1,16 +0,0 @@
-#include <stdlib.h>
-#include <string.h>
-#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 (file)
index b83c674..0000000
+++ /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