aboutsummaryrefslogtreecommitdiff
path: root/sem3/algo/mm2/linked/llist.h
diff options
context:
space:
mode:
Diffstat (limited to 'sem3/algo/mm2/linked/llist.h')
-rw-r--r--sem3/algo/mm2/linked/llist.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/sem3/algo/mm2/linked/llist.h b/sem3/algo/mm2/linked/llist.h
index e52be89..14130c4 100644
--- a/sem3/algo/mm2/linked/llist.h
+++ b/sem3/algo/mm2/linked/llist.h
@@ -4,9 +4,9 @@
#include "node.h"
typedef struct {
- node_t *root;
- node_t *head;
- unsigned int len;
+ node_t *root;
+ node_t *head;
+ unsigned int len;
} llist_t;
void llist_init(llist_t *list);
@@ -19,4 +19,4 @@ int llist_get(llist_t *list, unsigned int index);
int llist_pop(llist_t *list, unsigned int index);
-#endif
+#endif