data_structures
|
#include "graph.h"
Go to the source code of this file.
Functions | |
void | graph_add_edge (t_graph *graph, const void *v1, const void *v2) |
Adds an edge between two vertices in the graph. More... | |
void graph_add_edge | ( | t_graph * | graph, |
const void * | v1, | ||
const void * | v2 | ||
) |
Adds an edge between two vertices in the graph.
v1 | One vertex |
v2 | The other vertex |
Definition at line 16 of file graph_add_edge.c.