WIP smth broke in decode

This commit is contained in:
2026-07-17 02:09:29 +03:00
parent 0d2d02f967
commit 67e7fec3e0
182 changed files with 2572 additions and 4 deletions
+2 -2
View File
@@ -60,8 +60,8 @@ uint64_t hash(const char* str) {
}
int cmp(const void* arg1, const void* arg2) {
const struct symbols* s1 = arg1;
const struct symbols* s2 = arg2;
const struct symbols* s1 = (const struct symbols*)arg1;
const struct symbols* s2 = (const struct symbols*)arg2;
if (s1->hash > s2->hash) return 1;
if (s2->hash > s1->hash) return -1;