char string library. There is a character string splitting function.
Diff: StringUtil.h
- Revision:
- 0:c6bf0554e2f3
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/StringUtil.h Sun Dec 03 05:35:31 2017 +0000 @@ -0,0 +1,20 @@ +#ifndef MBED_STRING_UTIL_H +#define MBED_STRING_UTIL_H + +#include "mbed.h" +#include <math.h> +#include <string> +#include <string.h> +#include <list> + +class StringUtil +{ +public: + StringUtil(); + int splitChar( char *str, const char *delim, char *outlist[]); + + +private: +}; + +#endif \ No newline at end of file