Files
klubhaus-doorbell/libraries/FastLED/src/fl/has_include.h
2026-02-12 00:45:31 -08:00

8 lines
120 B
C

#pragma once
#ifndef __has_include
#define FL_HAS_INCLUDE(x) 0
#else
#define FL_HAS_INCLUDE(x) __has_include(x)
#endif