summaryrefslogtreecommitdiff
path: root/include/lib/ll.h
AgeCommit message (Collapse)Author
2026-04-23lib: ll & parser: um: proper linked list impl and refactor um0x221E
Linked list now implements FREE, ADD, functionalities. This modification allows for easier use of linked list and less bugs. The linked list functions now also have header and implementation macros to allow for external use of linked list functions in other translation units.
2026-04-22lib: ll: implement a minimal node-only linked list0x221E
O(n) add linked list was created with an add function. A foreach macro is also implemented as LL_FOREACH(). This linked list is temporary, and consists only of nodes.