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.