tsearch code sample
https://code.google.com/p/semicomplete/source/browse/codesamples/tsearch-example.c #include #include #include #include #include typedef struct foo { const char *name; int value; } foo_t; int cmp(const void *a, const void *b) { foo_t *fa, *fb; fa = (foo_t*)a; fb = (foo_t*)b; return strcmp(fa->name, fb->name); } void walker(const void *node, const VISIT which, const int depth) { foo_t *f; f = *(fo..
프로그래밍Tip
2013. 7. 8. 12:04
공지사항