diff options
author | Igor Pashev <pashev.igor@gmail.com> | 2012-11-02 20:15:39 +0400 |
---|---|---|
committer | Igor Pashev <pashev.igor@gmail.com> | 2012-11-02 20:15:39 +0400 |
commit | b13154de3eca5ba28fbb4854d916cd0be5febeed (patch) | |
tree | 30f2e9e89ab71a2df837076ac68c3ba770230294 /include/crc32.h | |
download | util-linux-upstream.tar.gz |
Imported Upstream version 2.22upstream/2.22upstream
Diffstat (limited to 'include/crc32.h')
-rw-r--r-- | include/crc32.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/include/crc32.h b/include/crc32.h new file mode 100644 index 0000000..b454be9 --- /dev/null +++ b/include/crc32.h @@ -0,0 +1,9 @@ +#ifndef UL_NG_CRC32_H +#define UL_NG_CRC32_H + +#include <stdint.h> + +extern uint32_t crc32(uint32_t seed, const unsigned char *buf, size_t len); + +#endif + |