foot/foot-features.h
Daniel Eklöf 402972085a
main: include +/-wcwidth in version output
* +wcwidth: use our own, builtin, wcwidth()
* -wcwidth: use system’s wcwidth()
2022-01-05 22:15:39 +01:00

48 lines
725 B
C

#pragma once
#include <stdbool.h>
static inline bool feature_assertions(void)
{
#if defined(NDEBUG)
return false;
#else
return true;
#endif
}
static inline bool feature_ime(void)
{
#if defined(FOOT_IME_ENABLED) && FOOT_IME_ENABLED
return true;
#else
return false;
#endif
}
static inline bool feature_pgo(void)
{
#if defined(FOOT_PGO_ENABLED) && FOOT_PGO_ENABLED
return true;
#else
return false;
#endif
}
static inline bool feature_graphemes(void)
{
#if defined(FOOT_GRAPHEME_CLUSTERING) && FOOT_GRAPHEME_CLUSTERING
return true;
#else
return false;
#endif
}
static inline bool feature_builtin_wcwidth(void)
{
#if FOOT_SYSTEM_WCWIDTH == 0
return true;
#else
return false;
#endif
}