C용 List/Hash 라이브러리 테스트
Collections-C 라는 라이브러리가 있음. (https://github.com/srdja/Collections-C) 이 라이브러리는 hash, list등.. 유용한 C용 함수를 제공하는 꽤 괜찮은 라이브러리라 생각됨. 아래는 list를 테스트 해봄. #include "src/common.c" #include "src/list.c" static List *list1; typedef struct var_t { int id; char *name; } var; int main() { var *v; list_new(&list1); v = malloc(sizeof(var)); v->id = 1; v->name = strdup("abc"); list_add(list1, v); v = malloc(sizeof(..