mirror of
https://github.com/bkaradzic/bx.git
synced 2026-02-17 20:52:37 +01:00
Removed use of wchar_t.
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user