X-Git-Url: https://git.auder.net/?a=blobdiff_plain;f=README.md;h=342d2d6728067ea2e70b940814a6213e3fa1e922;hb=71e16e325e3936549a5f3a140e6298fce333fd27;hp=42bfb11455ef2caf7e2818a35e37cd6c569273cb;hpb=3dc25aab78715e049093b1386f494ef472515cd3;p=cgds.git diff --git a/README.md b/README.md index 42bfb11..342d2d6 100644 --- a/README.md +++ b/README.md @@ -2,9 +2,15 @@ Various data structures, from stack to tree, which can contain any data type. +## Installation + + make [src] + make install +'src' is Makefile default target. + ## Example - Vector v = vector_new(int); + Vector* v = vector_new(int); vector_push(v, 32); vector_push(v, 42); int a; vector_get(v, 1, a); //a now contains 42