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

Function IsFullPath

sourcecommon/utils.cpp:77–90  ·  view source on GitHub ↗

--------------------------------------------------------------------------- ��� ������ ���� � ����� ?

Source from the content-addressed store, hash-verified

75//---------------------------------------------------------------------------
76// ��� ������ ���� � ����� ?
77bool IsFullPath(char * szName)
78{
79 if( !szName )
80 return false;
81 int l = strlen(szName);
82 if( l>3 )
83 {
84 if( szName[0]=='\\' && szName[1]=='\\' )
85 return true;
86 if( szName[1]==':' && szName[2]=='\\' )
87 return true;
88 }
89 return false;
90}
91//---------------------------------------------------------------------------
92// ��� �������� ����� ? (�������� ? ��� *)
93bool IsFileMask(char * szName)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected