summaryrefslogtreecommitdiff
path: root/src/ll-internal.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/ll-internal.h')
-rw-r--r--src/ll-internal.h28
1 files changed, 0 insertions, 28 deletions
diff --git a/src/ll-internal.h b/src/ll-internal.h
deleted file mode 100644
index e829669..0000000
--- a/src/ll-internal.h
+++ /dev/null
@@ -1,28 +0,0 @@
1#ifndef __VXGG_REWRITE___LL_INTERNAL_H___21242172227746___
2#define __VXGG_REWRITE___LL_INTERNAL_H___21242172227746___
3
4#define __VXGG_REWRITE___LL_INTERNAL___ 1
5#include "ll.h"
6#undef __VXGG_REWRITE___LL_INTERNAL___
7
8typedef struct dll {
9 void *data;
10 dll_freecb freecb;
11
12 struct dll *next;
13 struct dll *prev;
14
15} dllnode;
16typedef struct dlinked {
17 int size;
18 dllnode *start;
19 dllnode *end;
20
21} dlinkedlist;
22
23dllnode * dllnode_init(void *data, dll_freecb fcb);
24
25// Note: This file exists because I want to reuse dlinkedlist's definitions from threadpool to create a concurrent queue without
26// sacrificing the opaqueness of the definition
27
28#endif \ No newline at end of file