diff options
author | Pedro Vicente Nunes <pvn@hdfgroup.org> | 2003-10-28 17:40:05 (GMT) |
---|---|---|
committer | Pedro Vicente Nunes <pvn@hdfgroup.org> | 2003-10-28 17:40:05 (GMT) |
commit | f2b52777f461e1f9e9fcdf9d1dc2520b96746382 (patch) | |
tree | 3bc1eb0612e9ef9599a5f6424fbcce53a4f09090 /tools/h5repack/h5repack_opttable.c | |
parent | 10b6bab2abbf239495fa59f459ce0134c9a03bb0 (diff) | |
download | hdf5-f2b52777f461e1f9e9fcdf9d1dc2520b96746382.zip hdf5-f2b52777f461e1f9e9fcdf9d1dc2520b96746382.tar.gz hdf5-f2b52777f461e1f9e9fcdf9d1dc2520b96746382.tar.bz2 |
[svn-r7769] Purpose:
moved h5diff "public API" routines to tools/lib folder
Platforms tested:
linux
solaris 2.7
IRIX
Misc. update:
Diffstat (limited to 'tools/h5repack/h5repack_opttable.c')
-rw-r--r-- | tools/h5repack/h5repack_opttable.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/tools/h5repack/h5repack_opttable.c b/tools/h5repack/h5repack_opttable.c index cd0e7a2..b7019eb 100644 --- a/tools/h5repack/h5repack_opttable.c +++ b/tools/h5repack/h5repack_opttable.c @@ -28,10 +28,10 @@ *------------------------------------------------------------------------- */ -int options_table_init( options_table_t **tbl ) +int options_table_init( pack_opttbl_t **tbl ) { int i; - options_table_t* table = (options_table_t*) malloc(sizeof(options_table_t)); + pack_opttbl_t* table = (pack_opttbl_t*) malloc(sizeof(pack_opttbl_t)); if (table==NULL) { printf("Error: not enough memory for options table\n"); return -1; @@ -66,7 +66,7 @@ int options_table_init( options_table_t **tbl ) *------------------------------------------------------------------------- */ -int options_table_free( options_table_t *table ) +int options_table_free( pack_opttbl_t *table ) { free(table->objs); free(table); @@ -88,7 +88,7 @@ int options_add_chunk( obj_list_t *obj_list, int n_objs, hsize_t *chunk_lengths, int chunk_rank, - options_table_t *table ) + pack_opttbl_t *table ) { int i, j, k, I, added=0, found=0; @@ -185,7 +185,7 @@ int options_add_chunk( obj_list_t *obj_list, int options_add_comp( obj_list_t *obj_list, int n_objs, comp_info_t comp, - options_table_t *table ) + pack_opttbl_t *table ) { int i, j, I, added=0, found=0; @@ -273,7 +273,7 @@ int options_add_comp( obj_list_t *obj_list, */ pack_info_t* options_get_object( char *path, - options_table_t *table ) + pack_opttbl_t *table ) { int i; |