1 # cgds: C Generic Data Structures library
3 Various data structures, from stack to tree, which can contain any data type.
9 'src' is Makefile default target.
13 Vector* v = vector_new(int);
16 int a; vector_get(v, 1, a); //a now contains 42
17 vector_set(v, 0, 0); //v[0] now contains 0
20 More examples in the unit tests under test/ folder.