tsort: Minor style fix
This commit is contained in:
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;
|
||||||
|
Reference in New Issue
Block a user