diff options
| author | @syxhe <https://t.me/syxhe> | 2025-03-23 22:11:15 -0500 |
|---|---|---|
| committer | @syxhe <https://t.me/syxhe> | 2025-03-23 22:11:15 -0500 |
| commit | b3bd3df103a5a75d267b2b79e85558768b1dc4bb (patch) | |
| tree | ee3ad753b2db679295db846e7d80363e9b6552e7 /src/ll.c | |
| parent | c1b188af8c51e29c96a0422b79516d95696869e7 (diff) | |
Fix a whole bunch of shit, create an arena implementation
Diffstat (limited to 'src/ll.c')
| -rw-r--r-- | src/ll.c | 2 |
1 files changed, 2 insertions, 0 deletions
| @@ -1,6 +1,8 @@ | |||
| 1 | #include "ll.h" | 1 | #include "ll.h" |
| 2 | #include "shared.h" | ||
| 2 | 3 | ||
| 3 | #include <stddef.h> | 4 | #include <stddef.h> |
| 5 | #include <stdlib.h> | ||
| 4 | 6 | ||
| 5 | void dlinkedlist_init(dlinkedlist **ll) { | 7 | void dlinkedlist_init(dlinkedlist **ll) { |
| 6 | (*ll) = xcalloc(1, sizeof(**ll)); | 8 | (*ll) = xcalloc(1, sizeof(**ll)); |
