summaryrefslogtreecommitdiffstats
path: root/src/H5Pint.c
diff options
context:
space:
mode:
authorMohamad Chaarawi <chaarawi@hdfgroup.org>2015-10-06 18:31:47 (GMT)
committerMohamad Chaarawi <chaarawi@hdfgroup.org>2015-10-06 18:31:47 (GMT)
commit2ec9b447ec40c6a6486cbd2f577083fc905556fa (patch)
tree151498ddaec775d775b87d14515381351ec56f79 /src/H5Pint.c
parentd05369f41d078275b9f8879283ff9504a6a9f520 (diff)
parentdb00c23829fb80c35709be1b6de5781e51a134e0 (diff)
downloadhdf5-2ec9b447ec40c6a6486cbd2f577083fc905556fa.zip
hdf5-2ec9b447ec40c6a6486cbd2f577083fc905556fa.tar.gz
hdf5-2ec9b447ec40c6a6486cbd2f577083fc905556fa.tar.bz2
[svn-r27972] merge from trunk.
Diffstat (limited to 'src/H5Pint.c')
-rw-r--r--src/H5Pint.c21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/H5Pint.c b/src/H5Pint.c
index e01072d..61ad897 100644
--- a/src/H5Pint.c
+++ b/src/H5Pint.c
@@ -5403,3 +5403,24 @@ H5P_get_class(const H5P_genplist_t *plist)
FUNC_LEAVE_NOAPI(plist->pclass)
} /* end H5P_get_class() */
+
+/*-------------------------------------------------------------------------
+ * Function: H5P_ignore_cmp
+ *
+ * Purpose: Callback routine to ignore comparing property values.
+ *
+ * Return: zero
+ *
+ * Programmer: Mohamad Chaarawi
+ * October, 2015
+ *
+ *-------------------------------------------------------------------------
+ */
+int
+H5P_ignore_cmp(const void H5_ATTR_UNUSED *val1, const void H5_ATTR_UNUSED *val2,
+ size_t H5_ATTR_UNUSED size)
+{
+ FUNC_ENTER_NOAPI_NOINIT_NOERR
+
+ FUNC_LEAVE_NOAPI(0)
+} /* end H5P_ignore_cmp() */