summaryrefslogtreecommitdiff
path: root/src/lib/list.c
Commit message (Collapse)AuthorAgeFilesLines
* lib: Add move operation for listsdimitri staessens2017-01-201-0/+11
| | | | | Allows moving the elements of one linked list to another. Re-initializes the source list.
* lib, include: Fix typo in list.c/hdimitri staessens2017-01-091-2/+2
|
* build: Update licenses and copyrightdimitri staessens2017-01-091-1/+1
| | | | | Copyright is set to 2016 - 2017. License text on includes and sources in the library are changed to indicate the LGPLv2.1 license.
* lib: Revise implementation of listdimitri staessens2017-01-091-90/+38
| | | | Adds LGPL license to the ouroboros lists.
* ouroboros: Correct license statementsdimitri staessens2016-12-241-3/+2
| | | | | This corrects the license statements on all files. Installed headers are LGPLv2.1, the rest of the code is GPLv2.
* lib: Move list function definitions into a source fileSander Vrijders2016-03-141-0/+125
This moves the function definitions of list.h into a separate source file to avod linker errors when including the file in more than one source file.