1 2 3 4 5 6 7 8 9 10 11 12 13
void ProdWord_bla ( gtL, gtRes, lnL ) int *gtL, *gtRes; int lnL; { while ( 1 < lnL ) { *gtRes++ = *gtL++; --lnL; } if ( 0 < lnL ) if ( gtL[0] == gtL[1] ) *gtRes++ = 0; }