aboutsummaryrefslogtreecommitdiff
path: root/src/lib/third_party/include
diff options
context:
space:
mode:
authorCampus <fci1908@gmail.com>2018-08-23 11:22:21 +0200
committerCampus <fci1908@gmail.com>2018-08-23 11:22:21 +0200
commitff83bfbad073c106b41ace67cf828d6982d29635 (patch)
treeaa339c2ca95ebdfee4ec8380f0003282f199344d /src/lib/third_party/include
parent89b3b085afa1e115d63149031a1bc897dcc52b4d (diff)
ADD: add prototype of function ht_free in hash.h - DEL: delete include file .c in ndpi_main.c
Diffstat (limited to 'src/lib/third_party/include')
-rw-r--r--src/lib/third_party/include/hash.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lib/third_party/include/hash.h b/src/lib/third_party/include/hash.h
index 4f53e5a5e..2251706e4 100644
--- a/src/lib/third_party/include/hash.h
+++ b/src/lib/third_party/include/hash.h
@@ -25,5 +25,6 @@ extern int ht_hash( hashtable_t *hashtable, char *key );
extern entry_t *ht_newpair( char *key, u_int16_t value );
extern void ht_set( hashtable_t *hashtable, char *key, u_int16_t value );
extern u_int16_t ht_get( hashtable_t *hashtable, char *key );
+extern void ht_free( hashtable_t *hashtable );
#endif /* _HASH_H_ */