// Header file for warshall.c void graph_fill (int *graph, int nodes, int value); int warshall (int *graph, int nodes); int graph_ranks (int *graph, int *ranks, int nodes);