summaryrefslogtreecommitdiffstats
path: root/src/H5Tpkg.h
diff options
context:
space:
mode:
authorRaymond Lu <songyulu@hdfgroup.org>2004-03-19 19:55:42 (GMT)
committerRaymond Lu <songyulu@hdfgroup.org>2004-03-19 19:55:42 (GMT)
commit7fb0362eeda413222426613058a51282d25d0235 (patch)
treee7f8b8fdf45f79aa88fe1eba429fb2bc1732d2a9 /src/H5Tpkg.h
parente45e85190bf33ce8f49e4b919cab6fa60d4ff967 (diff)
downloadhdf5-7fb0362eeda413222426613058a51282d25d0235.zip
hdf5-7fb0362eeda413222426613058a51282d25d0235.tar.gz
hdf5-7fb0362eeda413222426613058a51282d25d0235.tar.bz2
[svn-r8266] Purpose: Internal function change
Description: The algorithm of H5T_bit_neg wasn't general enough. Solution: Changed it to handle arbitory starting position and size in a bit sequence. Platforms tested: h5committest.
Diffstat (limited to 'src/H5Tpkg.h')
-rw-r--r--src/H5Tpkg.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/H5Tpkg.h b/src/H5Tpkg.h
index 70a4f56..3f8e10d 100644
--- a/src/H5Tpkg.h
+++ b/src/H5Tpkg.h
@@ -1081,6 +1081,7 @@ H5_DLL ssize_t H5T_bit_find(uint8_t *buf, size_t offset, size_t size,
H5_DLL htri_t H5T_bit_inc(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);
+H5_DLL void H5T_bit_neg2(uint8_t *buf, size_t start, size_t size);
/* VL functions */
H5_DLL H5T_t * H5T_vlen_create(const H5T_t *base);