CCoding Style - Use Idioms for consistency2
From EdWiki
Use Idioms for consistency ...
Indentation should be idiomatic too.
for( ap = arr; ap < arr + 128; *ap++ = 0 ; ) { . . . }
This unusual vertical layout detracts from readability; it looks like three statements, not a loop:
for( ap = arr; ap < arr + 128; ap++ ) *ap = 0;