54#ifndef _SERVICES_CRC_CRC_H_
55#define _SERVICES_CRC_CRC_H_
57#include <cyg/infra/cyg_type.h>
61# define __externC extern "C"
63# define __externC extern
70cyg_posix_crc32(
unsigned char *s,
int len);
75cyg_crc32(
unsigned char *s,
int len);
81cyg_crc32_accumulate(cyg_uint32 crc,
unsigned char *s,
int len);
86cyg_ether_crc32(
unsigned char *s,
int len);
92cyg_ether_crc32_accumulate(cyg_uint32 crc,
unsigned char *s,
int len);
97cyg_crc16(
unsigned char *s,
int len);
100cyg_crc16_accumulate(cyg_uint16 crc,
unsigned char *s,
int len);