FastLED 3.9.15
Loading...
Searching...
No Matches

◆ memmove()

void * fl::memmove ( void * dest,
const void * src,
size_t n )

Definition at line 120 of file cstring.cpp.hpp.

120 {
121 if (n == 0) return dest;
122 return ::memmove(dest, src, n);
123}

References FL_NOEXCEPT.

Referenced by fl::basic_string::erase(), fl::basic_string::insert(), fl::basic_string::insert(), fl::third_party::MP3Decode(), fl::third_party::plm_buffer_discard_read_bytes(), fl::basic_string::replace(), fl::basic_string::replace(), and fl::vector_basic::trivial_move_left().

+ Here is the caller graph for this function: