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.
Dependents: WNCInterface_M2Xdemo ATT_WNCInterface_Info WNCInterface_HTTP_example Public_IoT_M2X_Cellular_Demo
Fork of M2XStreamClient by
Diff: Utility.cpp
- Revision:
- 0:f479e4f4db0e
diff -r 000000000000 -r f479e4f4db0e Utility.cpp
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/Utility.cpp Wed Feb 12 19:43:34 2014 +0000
@@ -0,0 +1,11 @@
+#include "Utility.h"
+
+void delay(int ms) {
+ wait_ms(ms);
+}
+
+char* strdup(const char* s) {
+ char* ret = (char*) malloc(strlen(s) + 1);
+ if (ret == NULL) { return ret;}
+ return strcpy(ret, s);
+}
