/* bfs.h Pedro Flynn - pflynn@microsoftsucks.org */ #ifndef BFS_H #define BFS_H #include "graph.h" typedef struct BFSVertex_ { void* data; VertexColor color; int hops; } BFSVertex; List* bfs(Graph* graph,BFSVertex* start); #endif