diff options
author | Christian Cunningham <cc@localhost> | 2022-01-05 14:01:29 -0800 |
---|---|---|
committer | Christian Cunningham <cc@localhost> | 2022-01-05 14:01:29 -0800 |
commit | 3a8ed19bf83f11ff00c4904fab2cc083b7e33478 (patch) | |
tree | 9d9a6f92f9d74001e969d23ea79ad26f6227fea2 /src/lib/ll.h | |
parent | f3ea4cd0c22f351d8dfffb0e937194c4b526b665 (diff) |
Cleaned up/ Standardized
Diffstat (limited to 'src/lib/ll.h')
-rw-r--r-- | src/lib/ll.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/ll.h b/src/lib/ll.h index 4a11620..ab4148d 100644 --- a/src/lib/ll.h +++ b/src/lib/ll.h @@ -7,11 +7,11 @@ struct LL { void* data; }; -struct LL* new(void* val); -void push(struct LL* l, void* val); -void remove(struct LL* l, unsigned long idx); +struct LL* new_ll(void* val); +void push_ll(struct LL* l, void* val); +void remove_ll(struct LL* l, unsigned long idx); -#define showl(L, TYPE) { \ +#define show_ll(L, TYPE) { \ struct LL* t = L; \ do { \ uart_hex(*(TYPE*)t->data); \ |