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/mm12/graph.h | |
parent | b7f9cf43c8a9ab3400cbb30d5e1cadb0c6c2cf23 (diff) |
Moved to linux kernel inspired clang-format
Diffstat (limited to 'sem3/algo/mm12/graph.h')
-rw-r--r-- | sem3/algo/mm12/graph.h | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/sem3/algo/mm12/graph.h b/sem3/algo/mm12/graph.h index e957c4d..f4f2c8f 100644 --- a/sem3/algo/mm12/graph.h +++ b/sem3/algo/mm12/graph.h @@ -5,23 +5,23 @@ struct vertex_struct; // Linked list typedef struct edge_struct { - int weight; - struct vertex_struct *from; - struct vertex_struct *to; - // Linked list stuff - struct edge_struct *next; - struct edge_struct *prev; + int weight; + struct vertex_struct *from; + struct vertex_struct *to; + // Linked list stuff + struct edge_struct *next; + struct edge_struct *prev; } edge_t; typedef struct vertex_struct { - char ref; - int dist; - struct vertex_struct *p; - edge_t *adj; + char ref; + int dist; + struct vertex_struct *p; + edge_t *adj; } vertex_t; typedef struct { - vertex_t *vertexes[128]; + vertex_t *vertexes[128]; } graph_t; |