Guitar
crc32.h
Go to the documentation of this file.
1 #ifndef CRC32_H
2 #define CRC32_H
3 
4 #include <cstdint>
5 #include <cstddef>
6 
7 namespace crc {
8 uint32_t crc32(uint32_t in, void const *data, size_t size);
9 }
10 
11 #endif // CRC32_H
Definition: crc32.h:7
uint32_t crc32(uint32_t in, void const *data, size_t size)
Definition: crc32.cpp:2