data_structures
|
#include "rbt.h"
Go to the source code of this file.
Functions | |
void * | rbt_floor (const t_rbt *rbt, const void *key) |
Returns the largest key less than or equal to the specified key. More... | |
void* rbt_floor | ( | const t_rbt * | rbt, |
const void * | key | ||
) |
Returns the largest key less than or equal to the specified key.
key | The key |
NULL
, if the tree is empty. Definition at line 33 of file rbt_floor.c.