MCPcopy Create free account
hub / github.com/FirebirdSQL/firebird / compare_ASCII7z

Function compare_ASCII7z

src/gpre/gpre.cpp:1283–1293  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1281//
1282
1283static SSHORT compare_ASCII7z(const char* str1, const char* str2)
1284{
1285
1286 for (; *str1; str1++, str2++)
1287 {
1288 if (UPPER7(*str1) != UPPER7(*str2))
1289 return (UPPER7(*str1) - UPPER7(*str2));
1290 }
1291
1292 return 0;
1293}
1294
1295
1296//____________________________________________________________

Callers 1

mainFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected