mirror of
https://github.com/IoTManagerProject/IoTManager.git
synced 2026-03-26 14:12:16 +03:00
15 lines
266 B
C++
15 lines
266 B
C++
// StreamUtils - github.com/bblanchon/ArduinoStreamUtils
|
|
// Copyright Benoit Blanchon 2019-2021
|
|
// MIT License
|
|
|
|
#pragma once
|
|
|
|
#include <stdlib.h> // size_t
|
|
|
|
struct FailingAllocator {
|
|
void* allocate(size_t) {
|
|
return nullptr;
|
|
}
|
|
void deallocate(void*) {}
|
|
};
|