MCPcopy Create free account
hub / github.com/F-Stack/f-stack / _quicklistInsertNodeBefore

Function _quicklistInsertNodeBefore

app/redis-6.2.6/src/quicklist.c:396–400  ·  view source on GitHub ↗

Wrappers for node inserting around existing node. */

Source from the content-addressed store, hash-verified

394
395/* Wrappers for node inserting around existing node. */
396REDIS_STATIC void _quicklistInsertNodeBefore(quicklist *quicklist,
397 quicklistNode *old_node,
398 quicklistNode *new_node) {
399 __quicklistInsertNode(quicklist, old_node, new_node, 0);
400}
401
402REDIS_STATIC void _quicklistInsertNodeAfter(quicklist *quicklist,
403 quicklistNode *old_node,

Callers 1

quicklistPushHeadFunction · 0.85

Calls 1

__quicklistInsertNodeFunction · 0.85

Tested by

no test coverage detected