>>17
Flow?
Is ``flow'' when your code is all over the screen, its syntax looking almost like Perl?
My style's flow is far more clear. The first letter tells you about scope change:
{ is a new scope,
} is exit from the previous one,
; is no change. A mostly blank line (with only a
;) also notifies you about scope exit.
The code itself looks clear. It isn't cluttered by curly braces and semicolons, statements always end at the newline. The lines aren't randomly indented all around and don't look like damn hills and valleys. It's far more beautiful than most other C code styles I've seen so far.