| 1935 | #endif // #ifdef IMGUI_DISABLE_DEFAULT_FORMAT_FUNCTIONS |
| 1936 | |
| 1937 | void ImFormatStringToTempBuffer(const char** out_buf, const char** out_buf_end, const char* fmt, ...) |
| 1938 | { |
| 1939 | va_list args; |
| 1940 | va_start(args, fmt); |
| 1941 | ImFormatStringToTempBufferV(out_buf, out_buf_end, fmt, args); |
| 1942 | va_end(args); |
| 1943 | } |
| 1944 | |
| 1945 | void ImFormatStringToTempBufferV(const char** out_buf, const char** out_buf_end, const char* fmt, va_list args) |
| 1946 | { |
no test coverage detected