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/H5Dselect.c | |
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/H5Dselect.c')
-rw-r--r-- | src/H5Dselect.c | 39 |
1 files changed, 27 insertions, 12 deletions
diff --git a/src/H5Dselect.c b/src/H5Dselect.c index 596937f..9f98d9e 100644 --- a/src/H5Dselect.c +++ b/src/H5Dselect.c @@ -18,14 +18,41 @@ * Purpose: Dataspace I/O functions. */ +/****************/ +/* 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 "H5FLprivate.h" /* Free Lists */ +/****************/ +/* Local Macros */ +/****************/ + +/******************/ +/* Local Typedefs */ +/******************/ + +/********************/ +/* Local Prototypes */ +/********************/ + +/*********************/ +/* Package Variables */ +/*********************/ + +/*******************/ +/* Local Variables */ +/*******************/ + /* Declare a free list to manage sequences of size_t */ H5FL_SEQ_DEFINE_STATIC(size_t); @@ -47,8 +74,6 @@ H5FL_SEQ_DEFINE_STATIC(hsize_t); * Programmer: Quincey Koziol * Thursday, June 20, 2002 * - * Modifications: - * *------------------------------------------------------------------------- */ herr_t @@ -143,8 +168,6 @@ done: * Programmer: Quincey Koziol * Monday, June 24, 2002 * - * Modifications: - * *------------------------------------------------------------------------- */ size_t @@ -234,8 +257,6 @@ done: * Programmer: Quincey Koziol * Monday, July 8, 2002 * - * Modifications: - * *------------------------------------------------------------------------- */ herr_t @@ -323,8 +344,6 @@ done: * Programmer: Quincey Koziol * Monday, June 24, 2002 * - * Modifications: - * *------------------------------------------------------------------------- */ size_t @@ -407,8 +426,6 @@ done: * Programmer: Quincey Koziol * Tuesday, July 23, 2002 * - * Modifications: - * *------------------------------------------------------------------------- */ herr_t @@ -552,8 +569,6 @@ done: * Programmer: Quincey Koziol * Tuesday, July 23, 2002 * - * Modifications: - * *------------------------------------------------------------------------- */ herr_t |