Mercurial > crc32
view crc32.h @ 1:90cb48b87dcc
*: don't hardcode the list of impls in multiple places
| author | Paper <paper@tflc.us> |
|---|---|
| date | Mon, 09 Feb 2026 01:18:06 -0500 |
| parents | 422835bc1aca |
| children |
line wrap: on
line source
#ifndef CRC32_H_ #define CRC32_H_ #include <stdint.h> #include <stddef.h> uint32_t crc32(const unsigned char *msg, size_t sz); #endif
