xref: /openbmc/libmctp/crc32.h (revision 060c71ed3b529c8e0a7de41e45b3b20b70933daf)
1 #ifndef _CRC32_H
2 #define _CRC32_H
3 
4 #include <stddef.h>
5 #include <stdint.h>
6 
7 uint32_t crc32(const void *buf, size_t len);
8 
9 #endif
10