diff options
Diffstat (limited to 'src/llist.h')
-rw-r--r-- | src/llist.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/llist.h b/src/llist.h index 7c4d590..9b3a952 100644 --- a/src/llist.h +++ b/src/llist.h @@ -37,14 +37,14 @@ /* Linked lists. */ typedef struct llist_item llist_item_t; struct llist_item { - struct llist_item *next; - void *data; + struct llist_item *next; + void *data; }; typedef struct llist llist_t; struct llist { - struct llist_item *head; - struct llist_item *tail; + struct llist_item *head; + struct llist_item *tail; }; typedef int (*llist_fn_cmp_t) (void *, void *); |