summaryrefslogtreecommitdiffstats
path: root/src/H5Gpkg.h
diff options
context:
space:
mode:
authorAllen Byrne <50328838+byrnHDF@users.noreply.github.com>2022-07-28 15:05:11 (GMT)
committerGitHub <noreply@github.com>2022-07-28 15:05:11 (GMT)
commit762c111350cc31137a80e24126b00d9aacf3b2a9 (patch)
tree8d21ed8a877bc60b9c517b7505ce80e2cf8031a9 /src/H5Gpkg.h
parentc1c4db3c4a0cbef6eceaab2f069e895936fbbe34 (diff)
downloadhdf5-762c111350cc31137a80e24126b00d9aacf3b2a9.zip
hdf5-762c111350cc31137a80e24126b00d9aacf3b2a9.tar.gz
hdf5-762c111350cc31137a80e24126b00d9aacf3b2a9.tar.bz2
clang 13 format #1933 (#1941)
Diffstat (limited to 'src/H5Gpkg.h')
-rw-r--r--src/H5Gpkg.h26
1 files changed, 13 insertions, 13 deletions
diff --git a/src/H5Gpkg.h b/src/H5Gpkg.h
index 3d7c118..4caff31 100644
--- a/src/H5Gpkg.h
+++ b/src/H5Gpkg.h
@@ -157,7 +157,7 @@ typedef struct {
typedef struct H5G_bt_common_t {
/* downward */
const char *name; /*points to temporary memory */
- H5HL_t * heap; /*symbol table heap */
+ H5HL_t *heap; /*symbol table heap */
} H5G_bt_common_t;
/*
@@ -169,7 +169,7 @@ typedef struct H5G_bt_ins_t {
H5G_bt_common_t common; /* Common info for B-tree user data (must be first) */
const H5O_link_t *lnk; /* Link to insert into table */
H5O_type_t obj_type; /* Type of object being inserted */
- const void * crt_info; /* Creation info for object being inserted */
+ const void *crt_info; /* Creation info for object being inserted */
} H5G_bt_ins_t;
/*
@@ -179,7 +179,7 @@ typedef struct H5G_bt_ins_t {
typedef struct H5G_bt_rm_t {
/* downward */
H5G_bt_common_t common; /* Common info for B-tree user data (must be first) */
- H5RS_str_t * grp_full_path_r; /* Full path of group where link is removed */
+ H5RS_str_t *grp_full_path_r; /* Full path of group where link is removed */
} H5G_bt_rm_t;
/* Typedef for B-tree 'find' operation */
@@ -193,7 +193,7 @@ typedef struct H5G_bt_lkp_t {
/* downward */
H5G_bt_common_t common; /* Common info for B-tree user data (must be first) */
H5G_bt_find_op_t op; /* Operator to call when correct entry is found */
- void * op_data; /* Data to pass to operator */
+ void *op_data; /* Data to pass to operator */
/* upward */
} H5G_bt_lkp_t;
@@ -204,10 +204,10 @@ typedef struct H5G_bt_lkp_t {
*/
typedef struct H5G_bt_it_it_t {
/* downward */
- H5HL_t * heap; /*symbol table heap */
+ H5HL_t *heap; /*symbol table heap */
hsize_t skip; /*initial entries to skip */
H5G_lib_iterate_t op; /*iteration operator */
- void * op_data; /*user-defined operator data */
+ void *op_data; /*user-defined operator data */
/* upward */
hsize_t *final_ent; /*final entry looked at */
@@ -215,11 +215,11 @@ typedef struct H5G_bt_it_it_t {
/* Data passed through B-tree iteration for copying copy symbol table content */
typedef struct H5G_bt_it_cpy_t {
- const H5O_loc_t * src_oloc; /* Source object location */
+ const H5O_loc_t *src_oloc; /* Source object location */
haddr_t src_heap_addr; /* Heap address of the source symbol table */
- H5F_t * dst_file; /* File of destination group */
+ H5F_t *dst_file; /* File of destination group */
const H5O_stab_t *dst_stab; /* Symbol table message for destination group */
- H5O_copy_t * cpy_info; /* Information for copy operation */
+ H5O_copy_t *cpy_info; /* Information for copy operation */
} H5G_bt_it_cpy_t;
/* Common information for "by index" lookups in symbol tables */
@@ -264,14 +264,14 @@ typedef struct H5G_dense_bt2_corder_rec_t {
*/
typedef struct H5G_bt2_ud_common_t {
/* downward */
- H5F_t * f; /* Pointer to file that fractal heap is in */
+ H5F_t *f; /* Pointer to file that fractal heap is in */
hid_t dxpl_id; /* DXPL for operation */
- H5HF_t * fheap; /* Fractal heap handle */
- const char * name; /* Name of link to compare */
+ H5HF_t *fheap; /* Fractal heap handle */
+ const char *name; /* Name of link to compare */
uint32_t name_hash; /* Hash of name of link to compare */
int64_t corder; /* Creation order value of link to compare */
H5B2_found_t found_op; /* Callback when correct link is found */
- void * found_op_data; /* Callback data when correct link is found */
+ void *found_op_data; /* Callback data when correct link is found */
} H5G_bt2_ud_common_t;
/*