show/hide this revision's text 2 added 531 characters in body; [made Community Wiki]

In a C code, how you separate different sections of code, for example Implementation, Globals, etc? Is there a coding standard. I have seen many methods, but which one is preferred, I want to get community opinions on this..

/********************************************************* 
 *                        GLOBALS                        *
 *********************************************************/

or

/*
 * GLOBALS
 */

Or anything similar?

EDIT: Let me clarify, I am looking for preferred ways. Not standards actually. What have you seen in projects, or used yourself? Second point is that I like reading code, and if something is going to help you understand different sections while looking at the code through a limited console screen, I would add it to the standard. The layout of code is important as well as what it does. So the number one requirement is that such a separator must be easily noticeable while scrolling the source code very fast page-by-page.

show/hide this revision's text 1

C Code layout and how to separate different sections of code?

In a C code, how you separate different sections of code, for example Implementation, Globals, etc? Is there a coding standard. I have seen many methods, but which one is preferred, I want to get community opinions on this..

/********************************************************* 
 *                        GLOBALS                        *
 *********************************************************/

or

/*
 * GLOBALS
 */

Or anything similar?