summaryrefslogtreecommitdiff
path: root/src/03/graph.h
blob: d29549098c4987ee371269a2e486b8912eb0889e (plain)
1
2
3
4
5
6
7
8
9
10
typedef struct {
  char label;
} Vertex;

typedef struct {
  Vertex *vertices[128];
} Graph;

Graph *graph_initialize(void);
Vertex *graph_add_vertex(Graph *graph, char label);