actube/src/cw/mavliter_get.c
7u83@mail.ru 4171d208d0 new mavl is working now
FossilOrigin-Name: 65a4eefffea57509c0d7fd573e53b15bf4a730ce297b7db182aaac796ea92448
2018-03-10 23:56:41 +00:00

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);
}