| 1919 | #endif // #ifdef IMGUI_DISABLE_DEFAULT_FORMAT_FUNCTIONS |
| 1920 | |
| 1921 | void ImFormatStringToTempBuffer(const char** out_buf, const char** out_buf_end, const char* fmt, ...) |
| 1922 | { |
| 1923 | va_list args; |
| 1924 | va_start(args, fmt); |
| 1925 | ImFormatStringToTempBufferV(out_buf, out_buf_end, fmt, args); |
| 1926 | va_end(args); |
| 1927 | } |
| 1928 | |
| 1929 | void ImFormatStringToTempBufferV(const char** out_buf, const char** out_buf_end, const char* fmt, va_list args) |
| 1930 | { |
no test coverage detected