char string library. There is a character string splitting function.

Revision:
1:fc299d8c1c7e
Parent:
0:c6bf0554e2f3
Child:
3:a69058b7a85e
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/CharUtil.h	Sun Dec 03 06:19:23 2017 +0000
@@ -0,0 +1,20 @@
+#ifndef MBED_CHAR_UTIL_H
+#define MBED_CHAR_UTIL_H
+
+#include "mbed.h"
+#include <math.h>
+#include <string>
+#include <string.h>
+#include <list>
+
+class CharUtil
+{
+public:
+    CharUtil();
+    int split(char *str, const char *delim, char *outlist[]);
+
+
+private:
+};
+
+#endif
\ No newline at end of file