Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Diff: WString.h
- Revision:
- 6:a8cf39c768c4
- Parent:
- 5:218b5decd1ea
- Child:
- 10:9d4ec0359a5c
diff -r 218b5decd1ea -r a8cf39c768c4 WString.h --- a/WString.h Fri Jan 30 12:19:57 2015 +0000 +++ b/WString.h Fri Jan 30 15:02:02 2015 +0000 @@ -19,13 +19,19 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ -#ifndef String_class_h -#define String_class_h +#ifndef __WSTRING_CLASS_H__ +#define __WSTRING_CLASS_H__ #ifdef __cplusplus -#include <stdlib.h> -#include <string.h> +#include "mbed.h" + +#include "itoas.h" + #include <ctype.h> +#include <cstddef> +#include <cstdlib> +#include <cstdio> +#include <cstring> // An inherited class for holding the result of a concatenation. These @@ -194,4 +200,4 @@ }; #endif // __cplusplus -#endif // String_class_h +#endif // __WSTRING_CLASS_H__