hebraize

rewrite terminal contents in hebrew
git clone https://a3nm.net/git/hebraize/
Log | Files | Refs | README

commit a78dbc5873ee7dcd83d629383353ed40bb72441a
parent 745212f0a13119dcb4e9a64241c2a1790a637c6e
Author: Antoine Amarilli <a3nm@a3nm.net>
Date:   Wed, 26 Jun 2019 13:59:43 +0200

not inline

Diffstat:
hebraize.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/hebraize.c b/hebraize.c @@ -221,7 +221,7 @@ struct linebuf { inline int soft(unsigned char c) { return c == 'e' || c == 'i' || c == 'y' || c == 'E' || c == 'I' || c == 'Y'; } -inline int vowel(unsigned char c) { +int vowel(unsigned char c) { return c == 'a' || c == 'e' || c == 'i' || c == 'o' || c == 'u' || c == 'y' || c == 'A' || c == 'E' || c == 'I' || c == 'O' || c == 'U' || c == 'Y'; }