mirror of
https://github.com/bkaradzic/bx.git
synced 2026-02-17 20:52:37 +01:00
Added printf and vprintf.
This commit is contained in:
@@ -281,6 +281,12 @@ namespace bx
|
||||
/// enough space had been available.
|
||||
int32_t snprintf(char* _out, int32_t _max, const char* _format, ...);
|
||||
|
||||
///
|
||||
int32_t vprintf(const char* _format, va_list _argList);
|
||||
|
||||
///
|
||||
int32_t printf(const char* _format, ...);
|
||||
|
||||
/// Templatized snprintf.
|
||||
template <typename Ty>
|
||||
void stringPrintfVargs(Ty& _out, const char* _format, va_list _argList);
|
||||
|
||||
Reference in New Issue
Block a user