Home | Info | Community | Development | myReactOS | Contact Us
[static]
Definition at line 83 of file indic.c.
Referenced by parse_consonant_syllable().
{ if (!is_consonant( lex(input[next]) )) return -1; next++; if ((next < cChar) && lex(input[next]) == lex_Nukta) next++; if ((next < cChar) && lex(input[next])==lex_Halant) { next++; if((next < cChar) && is_joiner( lex(input[next]) )) next++; if ((next < cChar) && is_consonant( lex(input[next]) )) return next; } else if ((next < cChar) && is_joiner( lex(input[next]) ) && lex(input[next+1])==lex_Halant) { next+=2; if ((next < cChar) && is_consonant( lex(input[next]) )) return next; } return -1; }