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

◆ Free()

void fl::Free ( void * ptr)

Definition at line 61 of file allocator.cpp.

61 {
62 if (ptr == nullptr) {
63 return; // Handle null pointer
64 }
65 Dealloc(ptr); // Free the allocated memory
66}