aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--hashtable.c2
-rw-r--r--hashtable.h2
2 files changed, 4 insertions, 0 deletions
diff --git a/hashtable.c b/hashtable.c
index bac399f..374adfa 100644
--- a/hashtable.c
+++ b/hashtable.c
@@ -28,6 +28,8 @@
*/
+// https://libregit.org/koszko/C_hashtable
+
// GENERAL INFO
// You might want to read the beginning of hashtable.h first.
diff --git a/hashtable.h b/hashtable.h
index 1950279..6e48179 100644
--- a/hashtable.h
+++ b/hashtable.h
@@ -28,6 +28,8 @@
*/
+// https://libregit.org/koszko/C_hashtable
+
// This is a separate chaining hashtable for general use. It's not
// universal: it uses malloc() and free(), so it requires a standard
// library to function and it's for single-threaded use only. It does,