First Version

Dependencies:   EthernetInterface mbed-rtos mbed

Revision:
0:9df41090ba33
diff -r 000000000000 -r 9df41090ba33 Functions/Split.h
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Functions/Split.h	Tue Jul 21 21:29:49 2015 +0000
@@ -0,0 +1,25 @@
+/*
+ * Split.h
+ *
+ *  Created on: 12/04/2012
+ *      Author: francisco
+ */
+
+#ifndef SPLIT_H_
+#define SPLIT_H_
+
+#include <stdio.h>
+#include <string.h>
+#include <stdlib.h>
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+extern int split(char* str,char* delim,char*** ret );
+
+#ifdef __cplusplus
+};
+#endif
+
+#endif /* SPLIT_H_ */