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.
Fork of M2XStreamClient by
Utility.h@21:6878944d2ce2, 2016-01-02 (annotated)
- Committer:
- citrusbyte
- Date:
- Sat Jan 02 02:29:43 2016 +0000
- Revision:
- 21:6878944d2ce2
- Parent:
- 0:f479e4f4db0e
Update library version
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
jb8414 | 0:f479e4f4db0e | 1 | #ifndef UTILITY_H_ |
jb8414 | 0:f479e4f4db0e | 2 | #define UTILITY_H_ |
jb8414 | 0:f479e4f4db0e | 3 | |
jb8414 | 0:f479e4f4db0e | 4 | #include "mbed.h" |
jb8414 | 0:f479e4f4db0e | 5 | #include <string.h> |
jb8414 | 0:f479e4f4db0e | 6 | |
jb8414 | 0:f479e4f4db0e | 7 | #ifdef __cplusplus |
jb8414 | 0:f479e4f4db0e | 8 | extern "C" { |
jb8414 | 0:f479e4f4db0e | 9 | #endif |
jb8414 | 0:f479e4f4db0e | 10 | |
jb8414 | 0:f479e4f4db0e | 11 | void delay(int ms); |
jb8414 | 0:f479e4f4db0e | 12 | char* strdup(const char* s); |
jb8414 | 0:f479e4f4db0e | 13 | |
jb8414 | 0:f479e4f4db0e | 14 | #ifdef __cplusplus |
jb8414 | 0:f479e4f4db0e | 15 | } |
jb8414 | 0:f479e4f4db0e | 16 | #endif |
jb8414 | 0:f479e4f4db0e | 17 | |
jb8414 | 0:f479e4f4db0e | 18 | #endif |