예제 #1
0
static void msg_list_destroy_item(void *item) {
	msg_list_destroy(item);
}
예제 #2
0
파일: closure.c 프로젝트: henglinli/seta
void closure_destroy_graph(closure_t *closure) {
    free(closure->name);
    msg_list_destroy(closure->arg_name_list);
    msg_list_destroy(closure->allocated_ancient_list);
}