Subversion Repositories PlanixRsrch.SVN

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
2 7u83 1
#include "mavl.h"
2
 
3
void mavl_destroy(struct mavl *t)
4
{
5
	mavl_del_all(t);
6
	free (t);
7
}
8
 
9