Home | Info | Community | Development | myReactOS | Contact Us
Definition at line 270 of file afangles.c.
Referenced by af_latin2_metrics_init_widths(), and af_latin_metrics_init_widths().
{ FT_UInt i, j; AF_WidthRec swap; for ( i = 1; i < count; i++ ) { for ( j = i; j > 0; j-- ) { if ( table[j].org > table[j - 1].org ) break; swap = table[j]; table[j] = table[j - 1]; table[j - 1] = swap; } } }