示例#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);
}