MCPcopy Create free account
hub / github.com/clementgallet/libTAS / ImFormatStringToTempBuffer

Function ImFormatStringToTempBuffer

src/external/imgui/imgui.cpp:1937–1943  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1935#endif // #ifdef IMGUI_DISABLE_DEFAULT_FORMAT_FUNCTIONS
1936
1937void 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
1945void ImFormatStringToTempBufferV(const char** out_buf, const char** out_buf_end, const char* fmt, va_list args)
1946{

Callers 1

BeginChildExMethod · 0.85

Calls 1

Tested by

no test coverage detected