]> wirehaze git hosting - graph-theory.git/blob - graph/dfs.h

wirehaze git hosting

formatting and portability
[graph-theory.git] / graph / dfs.h
1 #ifndef DFS_H
2 #define DFS_H
3
4 #include "graph/adj.h"
5
6 struct graph *dfs (struct graph *g);
7
8 #endif /* DFS_H */