diff options
Diffstat (limited to 'src/lib/eina_graph_dfs.h')
-rw-r--r-- | src/lib/eina_graph_dfs.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/eina_graph_dfs.h b/src/lib/eina_graph_dfs.h index 1de0ac7..09a770c 100644 --- a/src/lib/eina_graph_dfs.h +++ b/src/lib/eina_graph_dfs.h @@ -66,7 +66,7 @@ eina_graph_dfs_free(Eina_Graph_DFS *dfs); * @return the source vertex of the DFS. */ EAPI unsigned int -eina_graph_dfs_source(Eina_Graph_DFS *dfs); +eina_graph_dfs_source_get(Eina_Graph_DFS *dfs); /** * is there a path from the source to the given vertex. @@ -77,7 +77,7 @@ eina_graph_dfs_source(Eina_Graph_DFS *dfs); * @return EINA_TRUE if the vertex is reachable from the source. */ EAPI Eina_Bool -eina_graph_dfs_has_path_to(Eina_Graph_DFS *dfs, unsigned int v); +eina_graph_dfs_path_exists(Eina_Graph_DFS *dfs, unsigned int v); /* * return the path to reach the given vertex from the source. @@ -91,6 +91,6 @@ eina_graph_dfs_has_path_to(Eina_Graph_DFS *dfs, unsigned int v); * NULL if v is not reachable. */ EAPI Eina_List * -eina_graph_dfs_path_to(Eina_Graph_DFS *dfs, unsigned int v); +eina_graph_dfs_path_get(Eina_Graph_DFS *dfs, unsigned int v); #endif /* _EINA_GRAPH_DFS_H */ |