For test

Dependencies:   mbed

itoas.h

Committer:
shennongmin
Date:
2015-02-05
Revision:
35:90be2bc2a492
Parent:
10:9d4ec0359a5c

File content as of revision 35:90be2bc2a492:

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