Removed submodules

This commit is contained in:
2026-05-31 14:34:00 -04:00
commit 46c36b11da
352 changed files with 14792 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
#ifndef __cs361_hash__
#define __cs361_hash__
#include <stdbool.h>
void hash_dump (void); // for debugging if needed
void hash_destroy (void);
void hash_init (size_t);
char *hash_find (char *);
bool hash_insert (char *, char *);
char **hash_keys (void);
bool hash_remove (char *);
#endif