streaming server for AM/FM radio via UDP connection.

Dependencies:   mbed EthernetNetIf

crc32.h

Committer:
soramimi
Date:
2011-03-25
Revision:
1:3357273c97f8
Parent:
0:bd865e5a3df3

File content as of revision 1:3357273c97f8:


#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