diff options
author | Julian T <julian@jtle.dk> | 2020-10-12 16:26:42 +0200 |
---|---|---|
committer | Julian T <julian@jtle.dk> | 2020-10-12 16:54:48 +0200 |
commit | 4e05a55e373bd315e721d534a1711fec4c0054c5 (patch) | |
tree | 4fc0141760c2730ed79aaa4c7aa60ea45cc66cc0 /sem3/algo/mm2/linked/llist.h | |
parent | b7f9cf43c8a9ab3400cbb30d5e1cadb0c6c2cf23 (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.h | 8 |
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 |