summaryrefslogtreecommitdiff
path: root/src/core/wee-arraylist.c
AgeCommit message (Collapse)Author
2023-01-01core: update copyright datesSébastien Helleu
2022-01-17core: update copyright datesSébastien Helleu
2021-01-02core: update copyright datesSébastien Helleu
2020-04-27api: add functions completion_new, completion_search and completion_free ↵Sébastien Helleu
(issue #1484)
2020-01-04core: update copyright datesSébastien Helleu
2019-01-01core: update copyright datesSébastien Helleu
2018-11-29core: use https for links to GNU GPL licenseSébastien Helleu
2018-01-07core: fix some stylesSébastien Helleu
2018-01-05core: update copyright datesSébastien Helleu
2017-05-22core: fix potential use of NULL pointer in function arraylist_clearSébastien Helleu
2017-03-30core: make "callback_cmp" optional in call to function arraylist_new()Sébastien Helleu
If no callback is given, a default callback is used, which just compares pointers.
2017-01-01core: update copyright datesSébastien Helleu
2016-01-01core: update copyright datesSébastien Helleu
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