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

Function memmove

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

Source from the content-addressed store, hash-verified

118}
119
120void* memmove(void* dest, const void* src, size_t n) FL_NOEXCEPT {
121 if (n == 0) return dest;
122 return ::memmove(dest, src, n);
123}
124
125void* memset(void* s, int c, size_t n) FL_NOEXCEPT {
126 if (n == 0) return s;

Callers 3

trivial_move_leftMethod · 0.85
FL_TEST_FILEFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected