-
Notifications
You must be signed in to change notification settings - Fork 53
MTY_HashGet
chrisd1100 edited this page Aug 25, 2022
·
1 revision
Get a value from a hash by string key.
void *MTY_HashGet(
MTY_Hash * ctx,
const char * key
);
ctx
(MTY_Hash *
)
An MTY_Hash
.
key
(const char *
)
String key to lookup.
void *
The value associated with key
, otherwise NULL
.