Home | Info | Community | Development | myReactOS | Contact Us
Definition at line 828 of file bidi.c.
Referenced by BIDI_ReorderV2lLevel(), and ScriptLayout().
{ int ich = 0; /* true as soon as first odd level encountered */ fReverse = fReverse || odd(level); for (; ich < cch; ich++) { if (plevel[ich] < level) { break; } else if (plevel[ich] > level) { ich += BIDI_ReorderV2lLevel(level + 1, pIndexs + ich, plevel + ich, cch - ich, fReverse) - 1; } } if (fReverse) { reverse(pIndexs, ich); } return ich; }