streaming server for AM/FM radio via UDP connection.

Dependencies:   mbed EthernetNetIf

crc32.h

Committer:
soramimi
Date:
2012-08-30
Revision:
2:3b6816fd4ae6
Parent:
0:bd865e5a3df3

File content as of revision 2:3b6816fd4ae6:


#ifndef __CRC32_H
#define __CRC32_H

#include <stdlib.h>

#ifdef __cplusplus
extern "C" {
#endif


unsigned long crc32(unsigned long crc, unsigned char const *ptr, size_t len);


#ifdef __cplusplus
}
#endif

#endif