MCPcopy Create free account
hub / github.com/FastLED/FastLED / memcmp

Function memcmp

src/fl/stl/cstring.cpp.hpp:115–118  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

113}
114
115int memcmp(const void* s1, const void* s2, size_t n) FL_NOEXCEPT {
116 if (n == 0) return 0;
117 return ::memcmp(s1, s2, n);
118}
119
120void* memmove(void* dest, const void* src, size_t n) FL_NOEXCEPT {
121 if (n == 0) return dest;

Callers 7

operator==Method · 0.85
operator()Method · 0.85
string_compareFunction · 0.85
operator==Method · 0.85
FL_TEST_FILEFunction · 0.85
FL_TEST_FILEFunction · 0.85
FL_TEST_FILEFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected