summaryrefslogtreecommitdiff
path: root/include/ouroboros/list.h
Commit message (Collapse)AuthorAgeFilesLines
* lib: Move list function definitions into a source fileSander Vrijders2016-03-141-89/+9
| | | | | | 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.
* lib: removed hard tabs from listDimitri Staessens2016-03-141-59/+59
| | | | replaced hard tabs with soft tabs according to coding guidelines
* lib: Add helpers for RINA namesSander Vrijders2016-03-111-26/+0
| | | | This adds helper functions for RINA names, to aid with handling them.
* include: removed inline to comply with C89Dimitri Staessens2016-02-231-3/+3
| | | | list.h contained inline functions, which are not in the C89 standard.
* include: Add list implementationSander Vrijders2016-02-171-0/+270
This adds a list implementation similar to the one found in the Linux kernel.