From f593a59bce69f917514ef6213cf565c71bddcf8c Mon Sep 17 00:00:00 2001 From: dormando Date: Tue, 26 Sep 2017 14:43:17 -0700 Subject: external storage base commit been squashing reorganizing, and pulling code off to go upstream ahead of merging the whole branch. --- crc32c.h | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 crc32c.h (limited to 'crc32c.h') diff --git a/crc32c.h b/crc32c.h new file mode 100644 index 0000000..8b030de --- /dev/null +++ b/crc32c.h @@ -0,0 +1,9 @@ +#ifndef CRC32C_H +#define CRC32C_H + +typedef uint32_t (*crc_func)(uint32_t crc, const void *buf, size_t len); +crc_func crc32c; + +void crc32c_init(void); + +#endif /* CRC32C_H */ -- cgit v1.2.1