aboutsummaryrefslogtreecommitdiffstats
path: root/include/osmocom/sgsn/crc24.h
blob: c913eaf76ea993fb7f4e5e7b2755383c5eb55889 (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, const uint8_t *cp, unsigned int len);

#endif