features: +/-ucurl

This commit is contained in:
kraftwerk28 2022-07-30 11:58:28 +03:00
parent b1fe241215
commit f1f46edc7d
3 changed files with 15 additions and 4 deletions

View file

@ -37,3 +37,12 @@ static inline bool feature_graphemes(void)
return false;
#endif
}
static inline bool feature_ext_underline(void)
{
#if FOOT_EXT_UNDERLINE
return true;
#else
return false;
#endif
}