Removed use of wchar_t.

This commit is contained in:
Branimir Karadžić
2018-02-17 12:26:45 -08:00
parent 59fababc42
commit daa7f8619e
2 changed files with 1 additions and 45 deletions

View File

@@ -244,17 +244,9 @@ namespace bx
/// enough space had been available.
int32_t vsnprintf(char* _out, int32_t _max, const char* _format, va_list _argList);
/// Cross platform implementation of vsnwprintf that returns number of
/// characters which would have been written to the final string if
/// enough space had been available.
int32_t vsnwprintf(wchar_t* _out, int32_t _max, const wchar_t* _format, va_list _argList);
///
int32_t snprintf(char* _out, int32_t _max, const char* _format, ...);
///
int32_t swnprintf(wchar_t* _out, int32_t _max, const wchar_t* _format, ...);
///
template <typename Ty>
void stringPrintfVargs(Ty& _out, const char* _format, va_list _argList);