aboutsummaryrefslogtreecommitdiffstats
path: root/include/openbsc/crc24.h
blob: 756638c03dc240621b9b47dd78d8fb1aae5e6814 (plain)
1
2
3
4
5
6
7
8
9
10
#ifndef _CRC24_H
#define _CRC24_H

#include <stdint.h>

#define INIT_CRC24	0xffffff

uint32_t crc24_calc(uint32_t fcs, uint8_t *cp, unsigned int len);

#endif