ITEAD STUDIO / ArduinoAPI

Dependents:   WeeESP8266 ESP8266_moj

Committer:
itead
Date:
Tue Feb 10 07:47:08 2015 +0000
Revision:
3:eb0bbd72ffa1
Parent:
0:5ebc917ebd09
Update

Who changed what in which revision?

UserRevisionLine numberNew contents of line
itead 0:5ebc917ebd09 1 #ifndef __ARDUINOAPI_ITOAS_H__
itead 0:5ebc917ebd09 2 #define __ARDUINOAPI_ITOAS_H__
itead 0:5ebc917ebd09 3
itead 0:5ebc917ebd09 4 #include "cstdlib"
itead 0:5ebc917ebd09 5
itead 0:5ebc917ebd09 6 char* utoa( unsigned long value, char *string, int radix );
itead 0:5ebc917ebd09 7 char* itoa( int value, char *string, int radix );
itead 0:5ebc917ebd09 8 char* ultoa( unsigned long value, char *string, int radix );
itead 0:5ebc917ebd09 9 char* ltoa( long value, char *string, int radix );
itead 0:5ebc917ebd09 10
itead 0:5ebc917ebd09 11 #endif /* #ifndef __ARDUINOAPI_ITOAS_H__ */