From 154bf6f53529e88dfa03d6ff5034b575f92cdbb5 Mon Sep 17 00:00:00 2001 From: nasr Date: Tue, 14 Apr 2026 23:11:49 +0200 Subject: feature(setup): base implementation --- source/base/bash_hash.h | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 source/base/bash_hash.h (limited to 'source/base/bash_hash.h') diff --git a/source/base/bash_hash.h b/source/base/bash_hash.h new file mode 100644 index 0000000..758ef72 --- /dev/null +++ b/source/base/bash_hash.h @@ -0,0 +1,24 @@ +#ifndef BASH_HASH_H +#define BASH_HASH_H + +typedef struct hash_map hash_map; +typedef struct hash hash; + +struct map +{ + string8 + u64 capacity +}; + + +struct index +{ + string8 key; + string8 value; +}; + + + +internal void + +#endif /* BASH_HASH_H */ -- cgit v1.3