summaryrefslogtreecommitdiffstats
path: root/src/H5Tpkg.h
diff options
context:
space:
mode:
authorRaymond Lu <songyulu@hdfgroup.org>2004-03-17 17:36:34 (GMT)
committerRaymond Lu <songyulu@hdfgroup.org>2004-03-17 17:36:34 (GMT)
commita8ec063090e86e4419a036b742258475641fbb18 (patch)
tree6bd6680b784302e292e3fb2fe06d7d734e495037 /src/H5Tpkg.h
parent19d0f85444be57585cefc3fba78755cd486f30d7 (diff)
downloadhdf5-a8ec063090e86e4419a036b742258475641fbb18.zip
hdf5-a8ec063090e86e4419a036b742258475641fbb18.tar.gz
hdf5-a8ec063090e86e4419a036b742258475641fbb18.tar.bz2
[svn-r8264] Purpose: Internal algorithm change
Description: The H5T_bit_dec algorithm wasn't general enough. Solution: Changed it to handle bit sequence starting at any position and of any length. Platforms tested: h5committest
Diffstat (limited to 'src/H5Tpkg.h')
-rw-r--r--src/H5Tpkg.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/H5Tpkg.h b/src/H5Tpkg.h
index ad817f3..e7d3b04 100644
--- a/src/H5Tpkg.h
+++ b/src/H5Tpkg.h
@@ -1079,7 +1079,8 @@ H5_DLL void H5T_bit_set_d(uint8_t *buf, size_t offset, size_t size,
H5_DLL ssize_t H5T_bit_find(uint8_t *buf, size_t offset, size_t size,
H5T_sdir_t direction, hbool_t value);
H5_DLL htri_t H5T_bit_inc(uint8_t *buf, size_t start, size_t size);
-H5_DLL void H5T_bit_dec(uint8_t *buf, size_t start, size_t size);
+H5_DLL void H5T_bit_dec2(uint8_t *buf, size_t start, size_t size);
+H5_DLL htri_t H5T_bit_dec(uint8_t *buf, size_t start, size_t size);
H5_DLL void H5T_bit_neg(uint8_t *buf, size_t start, size_t size);
/* VL functions */