- added Delay to Serial flush method

Dependents:   WeeESP8266

Fork of ArduinoAPI by ITEAD STUDIO

itoas.h

Committer:
JojoS
Date:
2017-04-24
Revision:
7:c62910a9e405
Parent:
0:5ebc917ebd09

File content as of revision 7:c62910a9e405:

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