For test

Dependencies:   mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers itoas.h Source File

itoas.h

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