Subversion Repositories PlanixRsrch.SVN

Rev

Rev 329 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 329 Rev 454
Line 60... Line 60...
60
/*
60
/*
61
 * Number of integer values we want to put into our tree
61
 * Number of integer values we want to put into our tree
62
 */
62
 */
63
 
63
 
64
 
64
 
65
extern void *
-
 
66
mav_insert(struct mavl *t, const void *data, int *exists);
-
 
67
 
65
 
68
static void pcb(char*dst,struct mavlnode *n)
66
static void pcb(char*dst,struct mavlnode *n)
69
{
67
{
70
	int *d = mavlnode_dataptr(n);
68
	int *d = mavlnode_dataptr(n);
71
	(void) sprintf(dst,"(%d) %d ",n->bal,*d);
69
	(void) sprintf(dst,"(%d) %d ",n->bal,*d);