10 lines
88 B
C
10 lines
88 B
C
#include "mavl.h"
|
|
|
|
void mavl_destroy(struct mavl *t)
|
|
{
|
|
mavl_del_all(t);
|
|
free (t);
|
|
}
|
|
|
|
|