Skip to content

Latest commit

 

History

History
13 lines (8 loc) · 445 Bytes

README.md

File metadata and controls

13 lines (8 loc) · 445 Bytes

THEOSL

Theo Standart Library

A collection of useful functions and templated datastructures for C.

Datastructures

For now only vector (dynamic array), doubly linked tree and a generic hashmap more may be comming.

First define the concrete implementation like DEF_VEC(int) or DEF_DL_TREE(Node). Structs and emums must be typedef (this is not possible DEF_VEC(struct node_t)). For examples look in the test directory.