streaming server for AM/FM radio via UDP connection.

Dependencies:   mbed EthernetNetIf

crc32.h

Committer:
soramimi
Date:
2011-02-28
Revision:
0:bd865e5a3df3

File content as of revision 0:bd865e5a3df3:


#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