diff -r f992b027374b -r 3bd32eec3d57 sources/mystring.h --- a/sources/mystring.h Sun May 17 22:07:48 2015 +0300 +++ b/sources/mystring.h Wed May 27 21:15:52 2015 +0300 @@ -103,7 +103,9 @@ void replace (const char* a, const char* b); void replace (int pos, int n, const String &a) { m_string.replace (pos, n, a.chars()); } void shrink_to_fit() { m_string.shrink_to_fit(); } + void __cdecl sprintf (const char* fmtstr, ...); void sprintf (const char* fmtstr, ...); + void vsprintf (const char* fmtstr, va_list args); bool starts_with (const String &other) const; String strip (char unwanted) { return strip ({unwanted}); } String strip (const List &unwanted);