]> git.bts.cx Git - benzene.git/blob - third_party/snippets_org_crc/crc.h
Fixed Aseprite rendering system
[benzene.git] / third_party / snippets_org_crc / crc.h
1
2 /*
3 ** CRC.H - header file for SNIPPETS CRC and checksum functions
4 */
5
6 #ifndef CRC__H
7 #define CRC__H
8
9 #include <stddef.h>
10 #include <stdint.h>
11
12 #ifdef __cplusplus
13 extern "C" {
14 #endif
15
16 extern uint32_t crc32buf(const char *buf, size_t len);
17
18 #ifdef __cplusplus
19 }
20 #endif
21
22 #endif /* CRC__H */