From 5b381c8defa1434d4fd0c78b5d033c345db3063b Mon Sep 17 00:00:00 2001 From: Achim Gsell Date: Wed, 27 Aug 2008 09:56:14 +0000 Subject: [PATCH] added --- .gitattributes | 2 ++ src/h5/h5t_boundaries.c | 12 ++++++++++++ src/h5/h5t_boundaries.h | 10 ++++++++++ 3 files changed, 24 insertions(+) create mode 100644 src/h5/h5t_boundaries.c create mode 100644 src/h5/h5t_boundaries.h diff --git a/.gitattributes b/.gitattributes index 2cf1a3d..8af7f2a 100644 --- a/.gitattributes +++ b/.gitattributes @@ -381,6 +381,8 @@ src/h5/h5_core.h -text src/h5/h5_core_private.h -text src/h5/h5_private.h -text src/h5/h5_types.h -text +src/h5/h5t_boundaries.c -text +src/h5/h5t_boundaries.h -text src/h5/maps.c -text src/h5/maps.h -text src/h5/readwrite.c -text diff --git a/src/h5/h5t_boundaries.c b/src/h5/h5t_boundaries.c new file mode 100644 index 0000000..e9152eb --- /dev/null +++ b/src/h5/h5t_boundaries.c @@ -0,0 +1,12 @@ +#include + +#include "h5/h5_core.h" +#include "h5/h5_core_private.h" + +h5_err_t +h5t_add_boundary ( + h5_file *f, + const char * const bname + ) { + return -1; +} diff --git a/src/h5/h5t_boundaries.h b/src/h5/h5t_boundaries.h new file mode 100644 index 0000000..2a74c7b --- /dev/null +++ b/src/h5/h5t_boundaries.h @@ -0,0 +1,10 @@ +#ifndef __T_BOUNDARIES_H +#define __T_BOUNDARIES_H + +h5_err_t +h5t_add_boundary ( + h5_file *f, + const char * const bname + ); + +#endif