streaming server for AM/FM radio via UDP connection.

Dependencies:   mbed EthernetNetIf

Revision:
0:bd865e5a3df3
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/crc32.h	Mon Feb 28 11:49:39 2011 +0000
@@ -0,0 +1,19 @@
+
+#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