diff --git a/src/h5core/h5t_adjacencies.c b/src/h5core/h5t_adjacencies.c index 3f1d3e5..74cbbb1 100644 --- a/src/h5core/h5t_adjacencies.c +++ b/src/h5core/h5t_adjacencies.c @@ -18,9 +18,9 @@ h5_err_t h5t_get_edges_upadjacent_to_vertex ( - h5_file_t * const f, + h5_file_t* const f, const h5_id_t local_vid, - h5_idlist_t **list + h5_idlist_t** list ) { return (*f->t->methods.adjacency->get_edges_upadjacent_to_vertex)( f, local_vid, list); @@ -28,9 +28,9 @@ h5t_get_edges_upadjacent_to_vertex ( h5_err_t h5t_get_triangles_upadjacent_to_vertex ( - h5_file_t * const f, + h5_file_t* const f, const h5_id_t local_id, - h5_idlist_t **list + h5_idlist_t** list ) { return (*f->t->methods.adjacency->get_triangles_upadjacent_to_vertex)( f, local_id, list); @@ -38,9 +38,9 @@ h5t_get_triangles_upadjacent_to_vertex ( h5_err_t h5t_get_tets_upadjacent_to_vertex ( - h5_file_t * const f, + h5_file_t* const f, const h5_id_t local_id, - h5_idlist_t **list + h5_idlist_t** list ) { return (*f->t->methods.adjacency->get_tets_upadjacent_to_vertex)( f, local_id, list); @@ -48,9 +48,9 @@ h5t_get_tets_upadjacent_to_vertex ( h5_err_t h5t_get_triangles_upadjacent_to_edge ( - h5_file_t * const f, + h5_file_t* const f, const h5_id_t local_id, - h5_idlist_t **list + h5_idlist_t** list ) { return (*f->t->methods.adjacency->get_triangles_upadjacent_to_edge)( f, local_id, list); @@ -58,9 +58,9 @@ h5t_get_triangles_upadjacent_to_edge ( h5_err_t h5t_get_tets_upadjacent_to_edge ( - h5_file_t * const f, + h5_file_t* const f, const h5_id_t local_id, - h5_idlist_t **list + h5_idlist_t** list ) { return (*f->t->methods.adjacency->get_tets_upadjacent_to_edge)( f, local_id, list); @@ -68,9 +68,9 @@ h5t_get_tets_upadjacent_to_edge ( h5_err_t h5t_get_tets_upadjacent_to_triangle ( - h5_file_t * const f, + h5_file_t* const f, const h5_id_t local_id, - h5_idlist_t **list + h5_idlist_t** list ) { return (*f->t->methods.adjacency->get_tets_upadjacent_to_triangle)( f, local_id, list); @@ -78,9 +78,9 @@ h5t_get_tets_upadjacent_to_triangle ( h5_err_t h5t_get_vertices_downadjacent_to_edge ( - h5_file_t * const f, + h5_file_t* const f, const h5_id_t local_id, - h5_idlist_t **list + h5_idlist_t** list ) { return (*f->t->methods.adjacency->get_vertices_downadjacent_to_edge)( f, local_id, list); @@ -88,9 +88,9 @@ h5t_get_vertices_downadjacent_to_edge ( h5_err_t h5t_get_vertices_downadjacent_to_triangle ( - h5_file_t * const f, + h5_file_t* const f, const h5_id_t local_id, - h5_idlist_t **list + h5_idlist_t** list ) { return (*f->t->methods.adjacency->get_vertices_downadjacent_to_triangle)( f, local_id, list); @@ -98,9 +98,9 @@ h5t_get_vertices_downadjacent_to_triangle ( h5_err_t h5t_get_vertices_downadjacent_to_tet ( - h5_file_t * const f, + h5_file_t* const f, const h5_id_t local_id, - h5_idlist_t **list + h5_idlist_t** list ) { return (*f->t->methods.adjacency->get_vertices_downadjacent_to_tet)( f, local_id, list); @@ -108,9 +108,9 @@ h5t_get_vertices_downadjacent_to_tet ( h5_err_t h5t_get_edges_downadjacent_to_triangle ( - h5_file_t * const f, + h5_file_t* const f, const h5_id_t local_id, - h5_idlist_t **list + h5_idlist_t** list ) { return (*f->t->methods.adjacency->get_edges_downadjacent_to_triangle)( f, local_id, list); @@ -118,9 +118,9 @@ h5t_get_edges_downadjacent_to_triangle ( h5_err_t h5t_get_edges_downadjacent_to_tet ( - h5_file_t * const f, + h5_file_t* const f, const h5_id_t local_id, - h5_idlist_t **list + h5_idlist_t** list ) { return (*f->t->methods.adjacency->get_edges_downadjacent_to_tet)( f, local_id, list); @@ -128,9 +128,9 @@ h5t_get_edges_downadjacent_to_tet ( h5_err_t h5t_get_triangles_downadjacent_to_tet ( - h5_file_t * const f, + h5_file_t* const f, const h5_id_t local_id, - h5_idlist_t **list + h5_idlist_t** list ) { return (*f->t->methods.adjacency->get_triangles_downadjacent_to_tet)( f, local_id, list); @@ -138,10 +138,10 @@ h5t_get_triangles_downadjacent_to_tet ( h5_err_t h5t_release_list_of_adjacencies ( - h5_file_t * const f, - h5_idlist_t **list + h5_file_t* const f, + h5_idlist_t** list ) { - TRY ( h5priv_free_idlist ( f, list ) ); + TRY( h5priv_free_idlist (f, list) ); return H5_SUCCESS; }