summaryrefslogtreecommitdiff
path: root/crc32c.h
blob: c09cb42350df3367cc18bedb618a06c31da47dae (plain)
1
2
3
4
5
6
7
8
9
#ifndef CRC32C_H
#define    CRC32C_H

typedef uint32_t (*crc_func)(uint32_t crc, const void *buf, size_t len);
extern crc_func crc32c;

void crc32c_init(void);

#endif    /* CRC32C_H */