1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- #ifndef _CRC32_H
- #define _CRC32_H
- #include <stdint.h>
- #include <unistd.h> /* size_t */
- #ifdef __cplusplus
- extern "C" {
- #endif
- uint32_t dvb_crc32(uint8_t *data, size_t datalen, uint32_t crc);
- #ifdef __cplusplus
- }
- #endif
- #endif
|