diff options
author | Raymond Lu <songyulu@hdfgroup.org> | 2004-03-17 17:36:34 (GMT) |
---|---|---|
committer | Raymond Lu <songyulu@hdfgroup.org> | 2004-03-17 17:36:34 (GMT) |
commit | a8ec063090e86e4419a036b742258475641fbb18 (patch) | |
tree | 6bd6680b784302e292e3fb2fe06d7d734e495037 /src/H5Tpkg.h | |
parent | 19d0f85444be57585cefc3fba78755cd486f30d7 (diff) | |
download | hdf5-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.h | 3 |
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 */ |