summaryrefslogtreecommitdiffstats
path: root/src/lib/eina_graph_dfs.h
diff options
context:
space:
mode:
authorJérémy Zurcher <jeremy@asynk.ch>2014-03-30 22:17:56 +0200
committerJérémy Zurcher <jeremy@asynk.ch>2014-03-30 22:17:56 +0200
commitd44cd9ff53941d72c42c46d1fe73cc36c6969688 (patch)
treeb8e28f6d53856c3d45e226727f79a185b3d6207a /src/lib/eina_graph_dfs.h
parent19390ab685d27f2b2c3153dd53b5661998edcfaf (diff)
downloadeina_graph-d44cd9ff53941d72c42c46d1fe73cc36c6969688.zip
eina_graph-d44cd9ff53941d72c42c46d1fe73cc36c6969688.tar.gz
some API function renamed
Diffstat (limited to 'src/lib/eina_graph_dfs.h')
-rw-r--r--src/lib/eina_graph_dfs.h6
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 */