diff options
| author | Mistivia <i@mistivia.com> | 2025-06-08 22:59:53 +0800 |
|---|---|---|
| committer | Mistivia <i@mistivia.com> | 2025-06-08 22:59:53 +0800 |
| commit | d265d0292afde05985f06241c5277a5a9ca7de78 (patch) | |
| tree | 0fbb0f363cd30cd787108d370c40796c3010d878 /src/type_alias.h | |
| parent | 470bd2269ba68d29b36159e1765764d91bee661d (diff) | |
add generic hash table
Diffstat (limited to 'src/type_alias.h')
| -rw-r--r-- | src/type_alias.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/type_alias.h b/src/type_alias.h index 9d40684..ae6b7ff 100644 --- a/src/type_alias.h +++ b/src/type_alias.h @@ -14,5 +14,8 @@ typedef float Float; typedef double Double; typedef const char *String; +typedef uint64_t (*VoidHashFn)(void*); +typedef bool (*VoidEqFn)(void*, void*); +typedef int (*VoidCmpFn)(void*, void*); #endif |
