1 #ifndef MY_CRC32C_H
2 #define MY_CRC32C_H
3 
4 #include <stdint.h>
5 
6 typedef uint32_t (*my_crc32c_fp)(const uint8_t *buffer, size_t length);
7 
8 extern my_crc32c_fp my_crc32c;
9 
10 #endif /* MY_CRC32C_H */
11