summaryrefslogtreecommitdiff
path: root/source/base/bash_hash.h
diff options
context:
space:
mode:
authornasr <nsrddyn@gmail.com>2026-04-14 23:11:49 +0200
committernasr <nsrddyn@gmail.com>2026-04-14 23:11:49 +0200
commit154bf6f53529e88dfa03d6ff5034b575f92cdbb5 (patch)
tree04acbc1039719c610f11712b57e1786092f89242 /source/base/bash_hash.h
parent4d2a2af0c7d4eec9a9e43e0ba08813fdebaf8f9c (diff)
feature(setup): base implementation
Diffstat (limited to 'source/base/bash_hash.h')
-rw-r--r--source/base/bash_hash.h24
1 files changed, 24 insertions, 0 deletions
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 @@
1#ifndef BASH_HASH_H
2#define BASH_HASH_H
3
4typedef struct hash_map hash_map;
5typedef struct hash hash;
6
7struct map
8{
9 string8
10 u64 capacity
11};
12
13
14struct index
15{
16 string8 key;
17 string8 value;
18};
19
20
21
22internal void
23
24#endif /* BASH_HASH_H */