FastLED 3.9.15
Loading...
Searching...
No Matches
malloc.h
Go to the documentation of this file.
1#pragma once
2
3#include "fl/stl/stdint.h"
4#include "fl/stl/noexcept.h"
5
6namespace fl {
7 // Function declarations for memory management
8 void* malloc(size_t size) FL_NOEXCEPT;
9 void free(void* ptr) FL_NOEXCEPT;
10 void* calloc(size_t nmemb, size_t size) FL_NOEXCEPT;
11 void* realloc(void* ptr, size_t new_size) FL_NOEXCEPT;
12} // namespace fl
void * calloc(size_t nmemb, size_t size)
void * malloc(size_t size)
Definition malloc.cpp.hpp:9
void free(void *ptr)
void * realloc(void *ptr, size_t new_size)
Base definition for an LED controller.
Definition crgb.hpp:179
#define FL_NOEXCEPT