Subversion Repositories PlanixRsrch.SVN

Rev

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

Rev Author Line No. Line
449 7u83 1
#include "mavl.h"
2
 
3
 
4
 
5
void * mavl_get_ext(struct mavl *t ,const void *search, int mode)
6
{
465 7u83 7
	struct mavlnode *n;
8
	n = mavlnode_get_ext(t,search,mode);
9
	if (n)
10
		return mavlnode_dataptr(n);
449 7u83 11
	return NULL;
12
}
13