ARM mbed M2X API Client: The ARM mbed client library is used to send/receive data to/from AT&T's M2X service from mbed LPC1768 microcontrollers.

Dependents:   m2x-demo-all M2X_MTS_ACCEL_DEMO M2X_MTS_Accel M2X_K64F_ACCEL ... more

Utility.h

Committer:
citrusbyte
Date:
2016-01-02
Revision:
21:6878944d2ce2
Parent:
0:f479e4f4db0e

File content as of revision 21:6878944d2ce2:

#ifndef UTILITY_H_
#define UTILITY_H_

#include "mbed.h"
#include <string.h>

#ifdef __cplusplus
extern "C" {
#endif

void delay(int ms);
char* strdup(const char* s);

#ifdef __cplusplus
}
#endif

#endif