summaryrefslogtreecommitdiff
path: root/public.asm
AgeCommit message (Collapse)Author
2014-02-17add the function list_insert.HEADmasterOlivier 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-14split the unique file in two partsOlivier 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.