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

Function ReplaceCharacters

sourcecommon/utils.cpp:69–74  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

67}
68//---------------------------------------------------------------------------
69void ReplaceCharacters(AnsiString & s, char from, char to)
70{
71 for(int i=1, l=s.Length(); i<=l; i++)
72 if( s[i]==from )
73 s[i]=to;
74}
75//---------------------------------------------------------------------------
76// ��� ������ ���� � ����� ?
77bool IsFullPath(char * szName)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected