MCPcopy Create free account
hub / github.com/abbeycode/UnrarKit / InsertNode

Method InsertNode

Libraries/unrar/suballoc.cpp:23–27  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

21
22
23inline void SubAllocator::InsertNode(void* p,int indx)
24{
25 ((RAR_NODE*) p)->next=FreeList[indx].next;
26 FreeList[indx].next=(RAR_NODE*) p;
27}
28
29
30inline void* SubAllocator::RemoveNode(int indx)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected