X-Git-Url: https://git.saurik.com/redis.git/blobdiff_plain/8ca3e9d10b013263a5356c81882b00e619a88720..90fdc82697823a4e8228ae7e5c5ada0f56d160d7:/dict.h?ds=sidebyside diff --git a/dict.h b/dict.h index ba8f8695..30ace4db 100644 --- a/dict.h +++ b/dict.h @@ -129,6 +129,7 @@ int dictDelete(dict *d, const void *key); int dictDeleteNoFree(dict *d, const void *key); void dictRelease(dict *d); dictEntry * dictFind(dict *d, const void *key); +void *dictFetchValue(dict *d, const void *key); int dictResize(dict *d); dictIterator *dictGetIterator(dict *d); dictEntry *dictNext(dictIterator *iter);