37#ifndef _RTEMS_SCORE_RBTREEIMPL_H
38#define _RTEMS_SCORE_RBTREEIMPL_H
102 const RBTree_Control *rbtree,
void _RBTree_Append(RBTree_Control *the_rbtree, RBTree_Node *the_node)
Appends the node to the red-black tree.
Definition: rbtreeappend.c:43
void _RBTree_Iterate(const RBTree_Control *rbtree, RBTree_Visitor visitor, void *visitor_arg)
Red-black tree iteration.
Definition: rbtreeiterate.c:43
void _RBTree_Prepend(RBTree_Control *the_rbtree, RBTree_Node *the_node)
Prepends the node to the red-black tree.
Definition: rbtreeprepend.c:43
bool(* RBTree_Visitor)(const RBTree_Node *node, void *visitor_arg)
Red-black tree visitor.
Definition: rbtreeimpl.h:89
This header file provides interfaces of the Red-Black Tree Handler which are used by the implementati...
Red-black tree node.
Definition: rbtree.h:73