summaryrefslogtreecommitdiffstats
path: root/src/H5checksum.c
diff options
context:
space:
mode:
authorDana Robinson <43805+derobins@users.noreply.github.com>2023-06-29 19:13:29 (GMT)
committerGitHub <noreply@github.com>2023-06-29 19:13:29 (GMT)
commitfd933f30b1f8cd487ad790ac0b054bb779280a62 (patch)
tree9e366b2c19f1d84e28af4e588daf7bd8c075f8b6 /src/H5checksum.c
parentfd56a593b7928da636b2494b25cd7478fed78c29 (diff)
downloadhdf5-fd933f30b1f8cd487ad790ac0b054bb779280a62.zip
hdf5-fd933f30b1f8cd487ad790ac0b054bb779280a62.tar.gz
hdf5-fd933f30b1f8cd487ad790ac0b054bb779280a62.tar.bz2
Remove programmer/date from comments (#3210)
* Removes Programmer: and Date: fields * Fixes a few Modifications: fields leftover from previous work
Diffstat (limited to 'src/H5checksum.c')
-rw-r--r--src/H5checksum.c20
1 files changed, 0 insertions, 20 deletions
diff --git a/src/H5checksum.c b/src/H5checksum.c
index 8692579..b9823d8 100644
--- a/src/H5checksum.c
+++ b/src/H5checksum.c
@@ -13,8 +13,6 @@
/*-------------------------------------------------------------------------
*
* Created: H5checksum.c
- * Aug 21 2006
- * Quincey Koziol
*
* Purpose: Internal code for computing fletcher32 checksums
*
@@ -91,9 +89,6 @@ static hbool_t H5_crc_table_computed = FALSE;
*
* Return: 32-bit fletcher checksum of input buffer (can't fail)
*
- * Programmer: Quincey Koziol
- * Monday, August 21, 2006
- *
*-------------------------------------------------------------------------
*/
uint32_t
@@ -147,9 +142,6 @@ H5_checksum_fletcher32(const void *_data, size_t _len)
*
* Return: none
*
- * Programmer: Quincey Koziol
- * Tuesday, September 5, 2006
- *
*-------------------------------------------------------------------------
*/
static void
@@ -185,9 +177,6 @@ H5__checksum_crc_make_table(void)
*
* Return: 32-bit CRC checksum of input buffer (can't fail)
*
- * Programmer: Quincey Koziol
- * Tuesday, September 5, 2006
- *
*-------------------------------------------------------------------------
*/
static uint32_t
@@ -220,9 +209,6 @@ H5__checksum_crc_update(uint32_t crc, const uint8_t *buf, size_t len)
*
* Return: 32-bit CRC checksum of input buffer (can't fail)
*
- * Programmer: Quincey Koziol
- * Tuesday, September 5, 2006
- *
*-------------------------------------------------------------------------
*/
uint32_t
@@ -480,9 +466,6 @@ done:
*
* Return: checksum of input buffer (can't fail)
*
- * Programmer: Quincey Koziol
- * Tuesday, August 22, 2006
- *
*-------------------------------------------------------------------------
*/
uint32_t
@@ -509,9 +492,6 @@ H5_checksum_metadata(const void *data, size_t len, uint32_t initval)
*
* Return: hash of input string (can't fail)
*
- * Programmer: Quincey Koziol
- * Tuesday, December 11, 2007
- *
*-------------------------------------------------------------------------
*/
uint32_t