aboutsummaryrefslogtreecommitdiff
path: root/sem3/algo/mm2/linked/node.h
diff options
context:
space:
mode:
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