aboutsummaryrefslogtreecommitdiff
path: root/sem3/algo/mm2/linked/llist.h
diff options
context:
space:
mode:
authorJulian T <julian@jtle.dk>2020-10-12 16:26:42 +0200
committerJulian T <julian@jtle.dk>2020-10-12 16:54:48 +0200
commit4e05a55e373bd315e721d534a1711fec4c0054c5 (patch)
tree4fc0141760c2730ed79aaa4c7aa60ea45cc66cc0 /sem3/algo/mm2/linked/llist.h
parentb7f9cf43c8a9ab3400cbb30d5e1cadb0c6c2cf23 (diff)
Moved to linux kernel inspired clang-format
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