MCPcopy Create free account
hub / github.com/MaxBelkov/visualsyslog / MyFloatToStr

Function MyFloatToStr

sourcecommon/utils.cpp:1558–1565  ·  view source on GitHub ↗

---------------------------------------------------------------------------

Source from the content-addressed store, hash-verified

1556}
1557//---------------------------------------------------------------------------
1558String MyFloatToStr(double v, int digit)
1559{
1560 String m;
1561 m.printf(__UTEXT("%%.%df"), digit);
1562 TVarRec vr[1];
1563 vr[0] = v;
1564 return Format(m, vr, ARRAYSIZE(vr) - 1);
1565}
1566//---------------------------------------------------------------------------
1567String GetDayOfWeekNameLong(int dow)
1568{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected