actube/src/cw/mavl_free_str.c

8 lines
83 B
C

#include "mavl.h"
void mavl_free_str(union mavldata *data){
free(data->str);
}