summaryrefslogtreecommitdiffstats
path: root/src/H5Mpublic.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/H5Mpublic.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/H5Mpublic.h')
-rw-r--r--src/H5Mpublic.h34
1 files changed, 15 insertions, 19 deletions
diff --git a/src/H5Mpublic.h b/src/H5Mpublic.h
index 93947e0..6366a1f 100644
--- a/src/H5Mpublic.h
+++ b/src/H5Mpublic.h
@@ -10,40 +10,36 @@
* *
****************************************************************************/
-/* $Id$ */
-
/*
* This file contains public declarations for the H5M module.
*/
-
#ifndef _H5Mpublic_H
#define _H5Mpublic_H
/* Public headers needed by this file */
#include <H5public.h>
-#include <H5Cpublic.h> /*for hobjtype_t defn */
+#include <H5Cpublic.h> /*for hobjtype_t defn */
#ifdef __cplusplus
-extern "C" {
+extern "C" {
#endif
/* Functions in H5M.c */
- hid_t H5Maccess(hid_t oid);
- hid_t H5Mcopy(hid_t oid);
- hid_t H5Mfind_name(hid_t oid, group_t type, const char *name);
- uint32 H5Mname_len(hid_t oid);
- herr_t H5Mget_name(hid_t oid, char *name);
- herr_t H5Mset_name(hid_t oid, const char *name);
- hid_t H5Msearch(hid_t oid, group_t type, const char *name);
- hid_t H5Mindex(hid_t oid, group_t type, uint32 idx);
- hid_t H5Mflush(hid_t oid);
- herr_t H5Mdelete(hid_t oid);
- hid_t H5Mget_file(hid_t oid);
- hid_t H5Mget_parent(hid_t oid);
- herr_t H5Mclose(hid_t oid);
+hid_t H5Maccess (hid_t oid);
+hid_t H5Mcopy (hid_t oid);
+hid_t H5Mfind_name (hid_t oid, group_t type, const char *name);
+uint32 H5Mname_len (hid_t oid);
+herr_t H5Mget_name (hid_t oid, char *name);
+herr_t H5Mset_name (hid_t oid, const char *name);
+hid_t H5Msearch (hid_t oid, group_t type, const char *name);
+hid_t H5Mindex (hid_t oid, group_t type, uint32 idx);
+hid_t H5Mflush (hid_t oid);
+herr_t H5Mdelete (hid_t oid);
+hid_t H5Mget_file (hid_t oid);
+hid_t H5Mget_parent (hid_t oid);
+herr_t H5Mclose (hid_t oid);
#ifdef __cplusplus
}
-
#endif
#endif