summaryrefslogtreecommitdiff
path: root/tools.h
diff options
context:
space:
mode:
Diffstat (limited to 'tools.h')
-rw-r--r--tools.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/tools.h b/tools.h
index 7db052e..d830d47 100644
--- a/tools.h
+++ b/tools.h
@@ -14,6 +14,7 @@ std::string FormatDateTime( char const* format, time_t time );
std::string StringReplace( std::string const& text, std::string const& substring, std::string const& replacement );
std::vector< std::string > StringSplit( std::string const& text, char delimiter );
int StringToInt( std::string const& string, int base = 10 );
+std::string StringRepeat(int times, const std::string& input);
struct bad_lexical_cast: std::runtime_error
{