---------------------------------------------------------------------------
| 111 | } |
| 112 | //--------------------------------------------------------------------------- |
| 113 | int 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 | /* |
| 126 | int strcmpfixedlen(String str1, String str2) |
nothing calls this directly
no outgoing calls
no test coverage detected