mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-08 10:06:22 -05:00
13 lines
175 B
C
13 lines
175 B
C
|
|
#pragma once
|
||
|
|
|
||
|
|
#include <stdbool.h>
|
||
|
|
|
||
|
|
static inline bool feature_ime(void)
|
||
|
|
{
|
||
|
|
#if defined(FOOT_IME_ENABLED) && FOOT_IME_ENABLED
|
||
|
|
return true;
|
||
|
|
#else
|
||
|
|
return false;
|
||
|
|
#endif
|
||
|
|
}
|