data_structures
|
#include "graph.h"
Go to the source code of this file.
Functions | |
int | graph_adjacent (const t_graph *graph, const void *v1, const void *v2) |
Are two vertices in the graph adjacent to each other? More... | |
int graph_adjacent | ( | const t_graph * | graph, |
const void * | v1, | ||
const void * | v2 | ||
) |
Are two vertices in the graph adjacent to each other?
v1 | One vertex |
v2 | The other vertex |
1
if the vertices are adjacent, 0
otherwise Definition at line 16 of file graph_adjacent.c.