actube/src/cw/mavl_destroy.c

10 lines
88 B
C

#include "mavl.h"
void mavl_destroy(struct mavl *t)
{
mavl_del_all(t);
free (t);
}