Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-02-17 | add the function list_insert.HEADmaster | Olivier Gayot | |
the function inserts a new element at the position specified in its third argument. example: list_clear(&list); list_insert(&list, 2, 0); list_insert(&list, 1, 0); list_insert(&list, 3, 2); list_insert(&list, 0, 0); the list will contain [0, 1, 2, 3] | |||
2014-02-14 | split the unique file in two parts | Olivier Gayot | |
we splitted the implementation of the functions to the commented declaration so that one can only read the public file and understand what the library does without having to read the actual code. |