/* * A_firstc_laa returns first character of LAA combination if it exists * in: "c" base character * in: "c1" first composing character */ static int A_firstc_laa(int c, int c1) { if ((c1 != NUL) && (c == a_LAM) && !A_is_harakat(c1)) { return c1; } return 0; }
/* * A_firstc_laa returns first character of LAA combination if it exists */ static int A_firstc_laa ( int c, /* base character */ int c1 /* first composing character */ ) { if (c1 != NUL && c == a_LAM && !A_is_harakat(c1)) return c1; return 0; }