libcstl
Loading...
Searching...
No Matches
cstl_heap_node Struct Reference

Node to anchor an element within a heap. More...

#include <heap.h>

Detailed Description

Node to anchor an element within a heap.

Users of the heap object declare this object within another object as follows:

struct object {
...
struct cstl_heap_node heap_node;
...
};
Node to anchor an element within a heap.
Definition heap.h:48

When calling cstl_heap_init(), the caller passes the offset of cstl_heap_node within their object as the off parameter of that function, e.g.

offsetof(struct object, heap_node)

Definition at line 47 of file heap.h.


The documentation for this struct was generated from the following file: