]> git.lizzy.rs Git - rudp.git/blob - crc32.h
Switch to CMake
[rudp.git] / crc32.h
1 #ifndef __crc32_h__
2 #define __crc32_h__
3
4 #include "basetype.h"
5
6 #ifdef __cplusplus
7 extern "C" {
8 #endif
9
10 uint32_t calc_crc32(uint32_t crc, char *buf, int len);
11
12 #ifdef __cplusplus
13 }
14 #endif
15
16 #endif
17