Arduino Core API Library besed on mbed platform.

Dependents:   WeeESP8266 ESP8266_moj

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers itoas.h Source File

itoas.h

00001 #ifndef __ARDUINOAPI_ITOAS_H__
00002 #define __ARDUINOAPI_ITOAS_H__
00003 
00004 #include "cstdlib"
00005 
00006 char* utoa( unsigned long value, char *string, int radix );
00007 char* itoa( int value, char *string, int radix );
00008 char* ultoa( unsigned long value, char *string, int radix );
00009 char* ltoa( long value, char *string, int radix );
00010 
00011 #endif /* #ifndef __ARDUINOAPI_ITOAS_H__ */