summaryrefslogtreecommitdiffstats
path: root/src/H5private.h
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2006-10-16 22:57:56 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2006-10-16 22:57:56 (GMT)
commit16a95636a32fd3f5f16ec37370060222673085a5 (patch)
tree92a43f36d4b10489b100b541e7c76a2fb875791c /src/H5private.h
parent84bf19bec42e2c53114727df2e239aa3fecb1071 (diff)
downloadhdf5-16a95636a32fd3f5f16ec37370060222673085a5.zip
hdf5-16a95636a32fd3f5f16ec37370060222673085a5.tar.gz
hdf5-16a95636a32fd3f5f16ec37370060222673085a5.tar.bz2
[svn-r12768] Description:
Add 'initval' parameter to "lookup3" checksum routine (and implicitly to the metadata checksum routine), to allow chaining several checksums together easily (which isn't used by these modules, but will be used in my next checkin) Tested on: Linux/32 2.6 (chicago) Linux/64 2.6 (chicago2)
Diffstat (limited to 'src/H5private.h')
-rw-r--r--src/H5private.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5private.h b/src/H5private.h
index 3f523e1..a43661b 100644
--- a/src/H5private.h
+++ b/src/H5private.h
@@ -1434,8 +1434,8 @@ H5_DLL int H5Z_term_interface(void);
/* Checksum functions */
H5_DLL uint32_t H5_checksum_fletcher32(const void *data, size_t len);
H5_DLL uint32_t H5_checksum_crc(const void *data, size_t len);
-H5_DLL uint32_t H5_checksum_lookup3(const void *data, size_t len);
-H5_DLL uint32_t H5_checksum_metadata(const void *data, size_t len);
+H5_DLL uint32_t H5_checksum_lookup3(const void *data, size_t len, uint32_t initval);
+H5_DLL uint32_t H5_checksum_metadata(const void *data, size_t len, uint32_t initval);
/* Functions for debugging */
H5_DLL herr_t H5_buffer_dump(FILE *stream, int indent, uint8_t *buf,