summaryrefslogtreecommitdiffstats
path: root/src/H5Defl.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2005-10-21 15:52:54 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2005-10-21 15:52:54 (GMT)
commit275d19661e1f06f95c57e5f81635bb0e5e2c357a (patch)
treeeb393a99ea9d67984c9191597b584c1001ca0515 /src/H5Defl.c
parent155d762b9c4d60e0455f3bc71700a289ad18e6a4 (diff)
downloadhdf5-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/H5Defl.c')
-rw-r--r--src/H5Defl.c27
1 files changed, 26 insertions, 1 deletions
diff --git a/src/H5Defl.c b/src/H5Defl.c
index aaba3a6..2d160cf 100644
--- a/src/H5Defl.c
+++ b/src/H5Defl.c
@@ -17,20 +17,45 @@
* Thursday, September 30, 2004
*/
+/****************/
+/* Module Setup */
+/****************/
+
#define H5D_PACKAGE /*suppress error about including H5Dpkg */
+/***********/
+/* Headers */
+/***********/
#include "H5private.h" /* Generic Functions */
#include "H5Dpkg.h" /* Datasets */
#include "H5Eprivate.h" /* Error handling */
#include "H5Fprivate.h" /* Files */
-/* PRIVATE PROTOTYPES */
+/****************/
+/* Local Macros */
+/****************/
+
+/******************/
+/* Local Typedefs */
+/******************/
+
+/********************/
+/* Local Prototypes */
+/********************/
static herr_t H5D_efl_read (const H5O_efl_t *efl, haddr_t addr, size_t size,
uint8_t *buf);
static herr_t H5D_efl_write(const H5O_efl_t *efl, haddr_t addr, size_t size,
const uint8_t *buf);
+/*********************/
+/* Package Variables */
+/*********************/
+
+/*******************/
+/* Local Variables */
+/*******************/
+
/*-------------------------------------------------------------------------
* Function: H5D_efl_read