Arduino Core API Library besed on mbed platform.

Dependents:   WeeESP8266 ESP8266_moj

itoas.h

Committer:
itead
Date:
2015-02-05
Revision:
0:5ebc917ebd09

File content as of revision 0:5ebc917ebd09:

#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__ */