tsort: Minor style fix
This commit is contained in:
parent
b44d4d8edd
commit
1e81e214d6
6
tsort.c
6
tsort.c
@ -17,14 +17,12 @@
|
|||||||
|
|
||||||
struct vertex;
|
struct vertex;
|
||||||
|
|
||||||
struct edge
|
struct edge {
|
||||||
{
|
|
||||||
struct vertex *to;
|
struct vertex *to;
|
||||||
struct edge *next;
|
struct edge *next;
|
||||||
};
|
};
|
||||||
|
|
||||||
struct vertex
|
struct vertex {
|
||||||
{
|
|
||||||
char *name;
|
char *name;
|
||||||
struct vertex *next;
|
struct vertex *next;
|
||||||
struct edge edges;
|
struct edge edges;
|
||||||
|
Loading…
Reference in New Issue
Block a user