14 lines
144 B
C++
14 lines
144 B
C++
/* itos.h
|
|
Converts integer to string
|
|
*/
|
|
|
|
#ifndef _ITOS_H_
|
|
#define _ITOS_H_
|
|
|
|
#include <string>
|
|
using std::string;
|
|
|
|
string itos(int val);
|
|
|
|
#endif
|