summaryrefslogtreecommitdiff
path: root/src/core/wee-arraylist.c
AgeCommit message (Collapse)Author
2015-08-11core: fix long linesSébastien Helleu
2015-01-01core: update copyright datesSébastien Helleu
2014-10-17core: call "callback_free" in functions arraylist_{remove|clear|free}Sébastien Helleu
This fixes a memory leak in completions which are using this callback to free words in the completion list.
2014-10-11core: fix search/insert of elements in sorted arraylist with duplicatesSébastien Helleu
The pointer and index returned is now the first element found with the value (with the lower index if there are many elements with same value). And the index for insert is the last element with same value + 1 (the higher index + 1).
2014-09-01core: add comment about argument "index" of function arraylist_searchSébastien Helleu
2014-09-01core: reset data contents in function arraylist_clear if size_alloc_min > 0Sébastien Helleu
2014-09-01core: add extra check on arraylist pointer in arraylist functionsSébastien Helleu
2014-09-01core: add functions to manage array listsSébastien Helleu