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

Function stricmp

src/common/utils_proto.h:77–86  ·  view source on GitHub ↗

s t r i c m p Abstraction of incompatible routine names for case insensitive comparison.

Source from the content-addressed store, hash-verified

75 // Abstraction of incompatible routine names
76 // for case insensitive comparison.
77 inline int stricmp(const char* a, const char* b)
78 {
79#if defined(HAVE_STRCASECMP)
80 return ::strcasecmp(a, b);
81#elif defined(HAVE_STRICMP)
82 return ::stricmp(a, b);
83#else
84#error dont know how to compare strings case insensitive on this system
85#endif
86 }
87
88
89 // ********************

Callers 3

REMOTE_legacy_authFunction · 0.85
analyzeFunction · 0.85
greaterThanMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected