aboutsummaryrefslogtreecommitdiff
path: root/sem3/algo/mm2/linked/node.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/node.h
parentb7f9cf43c8a9ab3400cbb30d5e1cadb0c6c2cf23 (diff)
Moved to linux kernel inspired clang-format
Diffstat (limited to 'sem3/algo/mm2/linked/node.h')
-rw-r--r--sem3/algo/mm2/linked/node.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/sem3/algo/mm2/linked/node.h b/sem3/algo/mm2/linked/node.h
index 027926b..27f29c6 100644
--- a/sem3/algo/mm2/linked/node.h
+++ b/sem3/algo/mm2/linked/node.h
@@ -2,9 +2,9 @@
#define NODE_H
typedef struct node_struct {
- int val;
- struct node_struct *next;
- struct node_struct *prev;
+ int val;
+ struct node_struct *next;
+ struct node_struct *prev;
} node_t;
/** @brief Create a new node after specified node
@@ -20,4 +20,4 @@ node_t *node_insert(node_t *node, int val);
*/
int node_pop(node_t *node);
-#endif
+#endif