Subversion Repositories PlanixRsrch.SVN

Rev

Rev 449 | Blame | Compare with Previous | Last modification | View Log | RSS feed

#include "mavl.h"



void * mavl_get_ext(struct mavl *t ,const void *search, int mode)
{
        struct mavlnode *n;
        n = mavlnode_get_ext(t,search,mode);
        if (n)
                return mavlnode_dataptr(n);
        return NULL;
}