X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/6b0eb19fe80af6e2aa598afc84eb052cf2d8ddd9..4bf58c62d243e1d04aaa4e8b67e72289284b4200:/include/wx/string.h diff --git a/include/wx/string.h b/include/wx/string.h index 0b413e841f..2b65099b97 100644 --- a/include/wx/string.h +++ b/include/wx/string.h @@ -349,12 +349,16 @@ public: //@} //@} - /** @name formated output */ + /** @name formated input/output */ //@{ /// as sprintf(), returns the number of characters written or < 0 on error int Printf(const char *pszFormat, ...); /// as vprintf(), returns the number of characters written or < 0 on error int PrintfV(const char* pszFormat, va_list argptr); + /// as sscanf() + int Scanf(const char *pszFormat, ...) const; + /// as vsscanf() + int ScanfV(const char *pszFormat, va_list argptr) const; //@} // get writable buffer of at least nLen characters