int2str.hpp
Go to the documentation of this file.
1 
6 #ifndef INT2STR_HPP
7 #define INT2STR_HPP 1
8 
9 #include <string>
10 
15 std::string int2str(int n);
16 
17 #endif
std::string int2str(int n)
Converts an integer to a string.
Definition: int2str.cpp:6