-
Notifications
You must be signed in to change notification settings - Fork 56
MTY_HashPopInt
chrisd1100 edited this page Aug 25, 2022
·
1 revision
Get and remove a value from a hash by integer key.
void *MTY_HashPopInt(
MTY_Hash * ctx,
int64_t key
);
ctx
(MTY_Hash *
)
An MTY_Hash
.
key
(int64_t
)
Integer key to lookup and remove.
void *
The value associated with key
, otherwise NULL
.