actube/src/cw/mavliter_get.c

15 lines
262 B
C

#include "mavl.h"
/**
* Get the element, where AVL Iterator currently is positioned.
* @param i AVL Iterator
* @return element or NULL if not found.
*/
void * mavliter_get(mavliter_t *i)
{
if (!i->cur)
return NULL;
return mavlnode_dataptr(i->cur);
}