MCPcopy Create free account
hub / github.com/SatDump/SatDump / ImFormatStringToTempBuffer

Function ImFormatStringToTempBuffer

src-core/imgui/imgui.cpp:1921–1927  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1919#endif // #ifdef IMGUI_DISABLE_DEFAULT_FORMAT_FUNCTIONS
1920
1921void 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
1929void ImFormatStringToTempBufferV(const char** out_buf, const char** out_buf_end, const char* fmt, va_list args)
1930{

Callers 1

BeginChildExMethod · 0.85

Calls 1

Tested by

no test coverage detected