15 lines
224 B
C
15 lines
224 B
C
//
|
|
// Created by bruno on 13. 7. 2026.
|
|
//
|
|
|
|
#ifndef AUDIOCODER_CRC32_H
|
|
#define AUDIOCODER_CRC32_H
|
|
|
|
#include <stdint.h>
|
|
#include <stddef.h>
|
|
|
|
|
|
uint32_t calcCRC32(const uint8_t *data,size_t length);
|
|
|
|
#endif //AUDIOCODER_CRC32_H
|