osmo-sgsn/include/osmocom/sgsn/crc24.h

11 lines
165 B
C

#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