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

Function IPAddrToString

sourcecommon/utils.cpp:1359–1368  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

1357}
1358//---------------------------------------------------------------------------
1359AnsiString IPAddrToString(DWORD ip)
1360{
1361 AnsiString s;
1362 s.printf("%d.%d.%d.%d",
1363 (ip & 0xff) ,
1364 (ip & 0xff00) >> 8,
1365 (ip & 0xff0000) >> 16,
1366 (ip & 0xff000000)>>24);
1367 return s;
1368}
1369//---------------------------------------------------------------------------
1370bool IsHexDigit(char c)
1371{

Callers 1

TFormFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected