crc32.h
Go to the documentation of this file.
1 /* _ _ _
2  ___ ___ ___ _| |_|___| |_
3  | | _ _| | | _ _|
4  | _|_| |___ ___|_|___ |
5  |_| |_|
6  */
13 #ifndef CRC32_H
14 #define CRC32_H
15 
16 #include <stdint.h>
17 
18 extern uint32_t crc32( uint32_t crc, const char *buf, uint32_t len );
19 
20 #endif /* CRC32_H */