aboutsummaryrefslogtreecommitdiff
path: root/src/lib/ll.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/ll.c')
-rw-r--r--src/lib/ll.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/ll.c b/src/lib/ll.c
index 6d96f45..7f1a47e 100644
--- a/src/lib/ll.c
+++ b/src/lib/ll.c
@@ -1,7 +1,7 @@
#include "../lib/ll.h"
#include "../lib/mem.h"
-struct LL* new(void* val)
+struct LL* new_ll(void* val)
{
struct LL* ll = (struct LL*)malloc(sizeof(struct LL));
ll->prev = ll;
@@ -10,7 +10,7 @@ struct LL* new(void* val)
return ll;
}
-void push(struct LL* l, void* val)
+void push_ll(struct LL* l, void* val)
{
struct LL* ll = (struct LL*)malloc(sizeof(struct LL));
ll->prev = l->prev;
@@ -20,7 +20,7 @@ void push(struct LL* l, void* val)
ll->data = val;
}
-void remove(struct LL* l, unsigned long idx)
+void remove_ll(struct LL* l, unsigned long idx)
{
struct LL* t = l;
for(unsigned long i = 0; i < idx; i++) {