#include <string>
Go to the source code of this file.
|
std::string | itos (long i) |
|
◆ itos()
std::string itos |
( |
long |
i | ) |
|
Definition at line 18 of file itos.cc.
18 {
19
20 std::ostringstream s;
21 s << i;
22
23 return s.str();
24
25}
Referenced by main().