/* itos.h Converts integer to string */ #ifndef _ITOS_H_ #define _ITOS_H_ #include using std::string; string itos(int val); #endif