sources/mystring.h

branch
protocol5
changeset 84
3bd32eec3d57
parent 79
62cfb7b97fc0
parent 83
08bfc3d9d2ae
child 103
b78c0ca832a9
--- 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<char> &unwanted);

mercurial