8 lines
120 B
C
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
|