diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2005-10-21 15:52:54 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2005-10-21 15:52:54 (GMT) |
commit | 275d19661e1f06f95c57e5f81635bb0e5e2c357a (patch) | |
tree | eb393a99ea9d67984c9191597b584c1001ca0515 /src/H5Dprivate.h | |
parent | 155d762b9c4d60e0455f3bc71700a289ad18e6a4 (diff) | |
download | hdf5-275d19661e1f06f95c57e5f81635bb0e5e2c357a.zip hdf5-275d19661e1f06f95c57e5f81635bb0e5e2c357a.tar.gz hdf5-275d19661e1f06f95c57e5f81635bb0e5e2c357a.tar.bz2 |
[svn-r11593] Purpose:
Code cleanup
Description:
Clean up & standardize a bit in preparation for coding standards
discussion.
Platforms tested:
FreeBSD 4.11 (sleipnir)
Too minor to require h5committest
Diffstat (limited to 'src/H5Dprivate.h')
-rw-r--r-- | src/H5Dprivate.h | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/src/H5Dprivate.h b/src/H5Dprivate.h index df97218..dcd7f86 100644 --- a/src/H5Dprivate.h +++ b/src/H5Dprivate.h @@ -26,6 +26,10 @@ #include "H5Oprivate.h" /* Object headers */ #include "H5Zprivate.h" /* Data filters */ +/**************************/ +/* Library Private Macros */ +/**************************/ + /* * Feature: Define H5D_DEBUG on the compiler command line if you want to * debug dataset I/O. NDEBUG must not be defined in order for this @@ -209,7 +213,13 @@ typedef struct H5D_dcpl_cache_t { H5D_fill_time_t fill_time; /* Fill time (H5D_CRT_FILL_TIME_NAME) */ } H5D_dcpl_cache_t; -/* Library-private functions defined in H5D package */ +/*****************************/ +/* Library Private Variables */ +/*****************************/ + +/******************************/ +/* Library Private Prototypes */ +/******************************/ H5_DLL herr_t H5D_init(void); H5_DLL H5D_t *H5D_open(const H5G_entry_t *ent, hid_t dxpl_id); H5_DLL herr_t H5D_close(H5D_t *dataset); @@ -237,4 +247,5 @@ H5_DLL herr_t H5D_istore_delete(H5F_t *f, hid_t dxpl_id, H5_DLL herr_t H5D_istore_debug(H5F_t *f, hid_t dxpl_id, haddr_t addr, FILE * stream, int indent, int fwidth, unsigned ndims); -#endif +#endif /* _H5Dprivate_H */ + |