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

Method IsSectionName

sourcecommon/inif.cpp:117–125  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

115}
116//---------------------------------------------------------------------------
117bool TMYIniFile::IsSectionName(String Section)
118{
119 String s = Section.TrimLeft();
120 if( s.Length() > 3 )
121 if( s[1]=='[' )
122 return true;
123 return false;
124 //return *SkipStartCntlChars(Section)=='[';
125}
126//---------------------------------------------------------------------------
127// � ������ s �������� "\" �� "\r\n", � "\\" �� "\"
128AnsiString TMYIniFile::SpecialReplace(AnsiString s)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected