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

Function strcmpfixedlen

sourcecommon/utils.cpp:113–123  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

111}
112//---------------------------------------------------------------------------
113int strcmpfixedlen(char * str1, char * str2)
114{
115 int i = 0;
116 while( str1[i] && str2[i] )
117 {
118 if( toupper(str1[i]) != toupper(str2[i]) )
119 return 0; // ���� - ���� ������ break;
120 i++;
121 }
122 return i;
123}
124//---------------------------------------------------------------------------
125/*
126int strcmpfixedlen(String str1, String str2)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected