---------------------------------------------------------------------------
| 67 | } |
| 68 | //--------------------------------------------------------------------------- |
| 69 | void 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 | // ��� ������ ���� � ����� ? |
| 77 | bool IsFullPath(char * szName) |
nothing calls this directly
no outgoing calls
no test coverage detected