summaryrefslogtreecommitdiff
path: root/src/03/graph.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/03/graph.h')
-rw-r--r--src/03/graph.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/03/graph.h b/src/03/graph.h
index 95c96d8..e4f7c1c 100644
--- a/src/03/graph.h
+++ b/src/03/graph.h
@@ -12,3 +12,4 @@ typedef struct {
Graph *graph_initialize(void);
Vertex *graph_add_vertex(Graph *graph, char label);
void graph_add_edge(Graph *graph, Vertex *a, Vertex *b);
+bool graph_connected(Graph *graph, Vertex *a, Vertex *b);