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