MCPcopy Create free account
hub / github.com/VerySleepy/verysleepy / intToString

Function intToString

src/utils/stringutils.cpp:186–194  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

184}
185
186const std::wstring intToString(int i)
187{
188 //not static for thread-safety.
189 wchar_t buffer[100];
190
191 swprintf(buffer, 100, L"%i", i);
192
193 return std::wstring(buffer);
194}
195
196const std::wstring floatToString(float f)
197{

Callers 1

toStringFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected