summaryrefslogtreecommitdiff
path: root/src/ll-internal.c
diff options
context:
space:
mode:
author@syxhe <https://t.me/syxhe>2025-06-06 13:42:25 -0500
committer@syxhe <https://t.me/syxhe>2025-06-06 13:42:25 -0500
commitec0cfdc492065dcce687797d3a931af105a461c8 (patch)
tree52aa3af71ef6a4ed600b9b7750827fd7521cf2d8 /src/ll-internal.c
parent16528ac295215e788cb226f0cc49f11f82919741 (diff)
Get rid of useless ll-internal files
Diffstat (limited to 'src/ll-internal.c')
-rw-r--r--src/ll-internal.c17
1 files changed, 0 insertions, 17 deletions
diff --git a/src/ll-internal.c b/src/ll-internal.c
deleted file mode 100644
index e56302e..0000000
--- a/src/ll-internal.c
+++ /dev/null
@@ -1,17 +0,0 @@
1#include "ll-internal.h"
2#include "shared.h"
3
4#include <stdlib.h>
5
6dllnode * dllnode_init(void *data, dll_freecb fcb) {
7 dllnode *n = VALLOC(1, sizeof(*n));
8 if(!n)
9 return NULL;
10
11 n->data = data;
12 n->freecb = fcb;
13 n->prev = NULL;
14 n->next = NULL;
15
16 return n;
17} \ No newline at end of file