comparison crc32.h @ 0:422835bc1aca

*: checkin
author Paper <paper@tflc.us>
date Mon, 09 Feb 2026 01:15:00 -0500
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:422835bc1aca
1 #ifndef CRC32_H_
2 #define CRC32_H_
3
4 #include <stdint.h>
5 #include <stddef.h>
6
7 uint32_t crc32(const unsigned char *msg, size_t sz);
8
9 #endif