diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2023-04-07 12:43:18 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2023-04-07 12:43:18 +0000 |
commit | 9e5cc7f9eb4204e7f05018783dcc7c68783bc266 (patch) | |
tree | e7a40dd5265005869a4e85eb1e96fdc588b42ef0 /util/crc32.h | |
parent | Adding upstream version 2.4+really2.3. (diff) | |
download | nvme-cli-9e5cc7f9eb4204e7f05018783dcc7c68783bc266.tar.xz nvme-cli-9e5cc7f9eb4204e7f05018783dcc7c68783bc266.zip |
Adding upstream version 2.4+really2.4.upstream/2.4+really2.4
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'util/crc32.h')
-rw-r--r-- | util/crc32.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/util/crc32.h b/util/crc32.h new file mode 100644 index 0000000..e48c97d --- /dev/null +++ b/util/crc32.h @@ -0,0 +1,11 @@ +/* SPDX-License-Identifier: GPL-2.0-or-later */ + +#ifndef crc32_H +#define crc32_H + +#include <stdint.h> +#include <stddef.h> + +uint32_t crc32(uint32_t crc, unsigned char *buf, size_t len); + +#endif |