MCPcopy Create free account
hub / github.com/apache/brpc / strcasecmp

Function strcasecmp

src/butil/strings/string_util_posix.h:23–25  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

21}
22
23inline int strcasecmp(const char* string1, const char* string2) {
24 return ::strcasecmp(string1, string2);
25}
26
27inline int strncasecmp(const char* string1, const char* string2, size_t count) {
28 return ::strncasecmp(string1, string2, count);

Callers 8

TEST_FFunction · 0.85
operator()Method · 0.85
Str2HttpMethodFunction · 0.85
ProcessHttpResponseFunction · 0.85
~HttpResponseSenderMethod · 0.85
CompareIgnoreCaseMethod · 0.85
operator()Method · 0.85

Calls

no outgoing calls

Tested by 1

TEST_FFunction · 0.68