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

◆ memchr() [2/2]

void * fl::memchr ( void * s,
int c,
size_t n )

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

130 {
131 if (n == 0) return nullptr;
132 return ::memchr(s, c, n);
133}

References FL_NOEXCEPT.