mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-12 19:03:13 +01:00
12 lines
174 B
C
12 lines
174 B
C
|
|
typedef void* Value;
|
|
typedef void* Key;
|
|
|
|
struct AA;
|
|
|
|
size_t _aaLen(AA* aa);
|
|
Value* _aaGet(AA** aa, Key key);
|
|
Value _aaGetRvalue(AA* aa, Key key);
|
|
void _aaRehash(AA** paa);
|
|
|