예제 #1
0
list_t * list_new(void) {
    return list_new_dealloc(_default_dealloc);
}
예제 #2
0
파일: list.c 프로젝트: Konimiks/hello-world
list_t * list_new(void) {
    return list_new_dealloc(NULL);
}