Arduino Core API Library besed on mbed platform.

Dependents:   WeeESP8266 ESP8266_moj

Revision:
0:5ebc917ebd09
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/itoas.h	Thu Feb 05 07:24:30 2015 +0000
@@ -0,0 +1,11 @@
+#ifndef __ARDUINOAPI_ITOAS_H__
+#define __ARDUINOAPI_ITOAS_H__
+
+#include "cstdlib"
+
+char* utoa( unsigned long value, char *string, int radix );
+char* itoa( int value, char *string, int radix );
+char* ultoa( unsigned long value, char *string, int radix );
+char* ltoa( long value, char *string, int radix );
+
+#endif /* #ifndef __ARDUINOAPI_ITOAS_H__ */
\ No newline at end of file