lib/misc/itoa.h
changeset 0 6f7a81934006
equal deleted inserted replaced
-1:000000000000 0:6f7a81934006
       
     1 #ifndef ITOA__H__
       
     2 #define ITOA__H__
       
     3 
       
     4 #ifdef __cplusplus
       
     5 extern "C" const char* itoa(int, int = 0);
       
     6 #else
       
     7 extern const char* itoa(int, int);
       
     8 #endif
       
     9 
       
    10 #endif