summaryrefslogtreecommitdiffstats
path: root/src/H5Ppublic.h
diff options
context:
space:
mode:
authorRobb Matzke <matzke@llnl.gov>1998-01-22 16:41:32 (GMT)
committerRobb Matzke <matzke@llnl.gov>1998-01-22 16:41:32 (GMT)
commita0ee2c57e934c5ff2269e345238a6ee019f6c294 (patch)
tree08a553617329401737ddff6af60ccd11a13cc6a3 /src/H5Ppublic.h
parentfdfb6dfd26410b931b4452f832b5a4aedec283e0 (diff)
downloadhdf5-a0ee2c57e934c5ff2269e345238a6ee019f6c294.zip
hdf5-a0ee2c57e934c5ff2269e345238a6ee019f6c294.tar.gz
hdf5-a0ee2c57e934c5ff2269e345238a6ee019f6c294.tar.bz2
[svn-r164] Changes since 19980122
---------------------- ./src/*.h Fixed indentation where indent(1) screwed up. This isn't by any means the final say, but it's better than it was. ./src/H5A.c ./src/H5Aprivate.h ./src/H5Apublic.h ./src/H5C.c ./src/H5D.c ./src/H5E.c ./src/H5F.c ./src/H5G.c ./src/H5M.c ./src/H5P.c ./src/H5T.c ./src/H5Tconv.c ./src/debug.c ./test/dtypes.c ./test/istore.c ./test/theap.c ./test/tohdr.c ./test/tstab.c Removed some atom functions from the API and made them library-scope. Also changed some names by removing the redundant `atom' from the name and by adding a `_' after the `H5A'.
Diffstat (limited to 'src/H5Ppublic.h')
-rw-r--r--src/H5Ppublic.h29
1 files changed, 12 insertions, 17 deletions
diff --git a/src/H5Ppublic.h b/src/H5Ppublic.h
index bbf5dc7..e7b1dab 100644
--- a/src/H5Ppublic.h
+++ b/src/H5Ppublic.h
@@ -10,12 +10,9 @@
* *
****************************************************************************/
-/* $Id$ */
-
/*
* This file contains public declarations for the H5P module.
*/
-
#ifndef _H5pproto_H
#define _H5Pproto_H
@@ -28,28 +25,26 @@
/* Different types of dataspaces */
typedef enum H5P_class_t {
- H5P_NO_CLASS = -1, /*error */
- H5P_SCALAR = 0, /*scalar variable */
- H5P_SIMPLE = 1, /*simple data space */
- H5P_COMPLEX = 2 /*complex data space */
+ H5P_NO_CLASS = -1, /*error */
+ H5P_SCALAR = 0, /*scalar variable */
+ H5P_SIMPLE = 1, /*simple data space */
+ H5P_COMPLEX = 2 /*complex data space */
} H5P_class_t;
#ifdef __cplusplus
-extern "C" {
+extern "C" {
#endif
/* Functions in H5P.c */
- hid_t H5Pcreate(H5P_class_t type);
- herr_t H5Pclose(hid_t space_id);
- size_t H5Pget_npoints(hid_t space_id);
- intn H5Pget_ndims(hid_t space_id);
- intn H5Pget_dims(hid_t space_id, size_t dims[]);
-
- hbool_t H5Pis_simple(hid_t space_id);
- herr_t H5Pset_space(hid_t space_id, intn rank, const size_t *dims);
+hid_t H5Pcreate (H5P_class_t type);
+herr_t H5Pclose (hid_t space_id);
+size_t H5Pget_npoints (hid_t space_id);
+intn H5Pget_ndims (hid_t space_id);
+intn H5Pget_dims (hid_t space_id, size_t dims[]);
+hbool_t H5Pis_simple (hid_t space_id);
+herr_t H5Pset_space (hid_t space_id, intn rank, const size_t *dims);
#ifdef __cplusplus
}
-
#endif
#endif