aboutsummaryrefslogtreecommitdiff
path: root/src/hash.c
diff options
context:
space:
mode:
authorFranklin Wei <git@fwei.tk>2016-02-20 20:37:06 -0500
committerFranklin Wei <git@fwei.tk>2016-02-28 16:30:21 -0500
commit2c687e77cd9ae3fd01010d7b36c8d0082bb76315 (patch)
treeb8cd58cea075a3c94cb2f1417e6eaea27865b827 /src/hash.c
parent02de31c48c021742c6245b711790f6d853866c36 (diff)
downloadnetcosm-2c687e77cd9ae3fd01010d7b36c8d0082bb76315.zip
netcosm-2c687e77cd9ae3fd01010d7b36c8d0082bb76315.tar.gz
netcosm-2c687e77cd9ae3fd01010d7b36c8d0082bb76315.tar.bz2
netcosm-2c687e77cd9ae3fd01010d7b36c8d0082bb76315.tar.xz
implements aliases and other assorted features/enhancements
Diffstat (limited to 'src/hash.c')
-rw-r--r--src/hash.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/hash.c b/src/hash.c
index 70e5d8d..eed4846 100644
--- a/src/hash.c
+++ b/src/hash.c
@@ -24,6 +24,11 @@
#include <stdlib.h>
#include <string.h>
+/**
+ * @file
+ * @brief A simple, chained hash table
+ */
+
struct hash_node {
const void *key;
const void *data;