streaming server for AM/FM radio via UDP connection.

Dependencies:   mbed EthernetNetIf

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers crc32.h Source File

crc32.h

00001 
00002 #ifndef __CRC32_H
00003 #define __CRC32_H
00004 
00005 #include <stdlib.h>
00006 
00007 #ifdef __cplusplus
00008 extern "C" {
00009 #endif
00010 
00011 
00012 unsigned long crc32(unsigned long crc, unsigned char const *ptr, size_t len);
00013 
00014 
00015 #ifdef __cplusplus
00016 }
00017 #endif
00018 
00019 #endif