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/H5Dtest.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/H5Dtest.c')
-rw-r--r-- | src/H5Dtest.c | 33 |
1 files changed, 30 insertions, 3 deletions
diff --git a/src/H5Dtest.c b/src/H5Dtest.c index 24817a8..a48bca8 100644 --- a/src/H5Dtest.c +++ b/src/H5Dtest.c @@ -18,14 +18,41 @@ * Purpose: Dataset testing functions. */ +/****************/ +/* Module Setup */ +/****************/ + #define H5D_PACKAGE /*suppress error about including H5Dpkg */ #define H5D_TESTING /*suppress warning about H5D testing funcs*/ -#include "H5private.h" /* Generic Functions */ +/***********/ +/* Headers */ +/***********/ +#include "H5private.h" /* Generic Functions */ #include "H5Dpkg.h" /* Datasets */ -#include "H5Eprivate.h" /* Error handling */ -#include "H5Iprivate.h" /* ID Functions */ +#include "H5Eprivate.h" /* Error handling */ +#include "H5Iprivate.h" /* IDs */ + +/****************/ +/* Local Macros */ +/****************/ + +/******************/ +/* Local Typedefs */ +/******************/ + +/********************/ +/* Local Prototypes */ +/********************/ + +/*********************/ +/* Package Variables */ +/*********************/ + +/*******************/ +/* Local Variables */ +/*******************/ /*-------------------------------------------------------------------------- |