branch with improvemnts
Fork of M2XStreamClient by
Diff: Utility.cpp
- Revision:
- 0:f479e4f4db0e
--- /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); +}