grub2-dev: Comments

1 
1 2.6 Comments
1 ============
1 
1 All comments shall be C-style comments, of the form '/* ... */'.
1 
1    Comments shall be placed only on a line by themselves.  They shall
1 not be placed together with code, variable declarations, or other
1 non-comment entities.  A comment should be placed immediately preceding
1 the entity it describes.
1 
1    Acceptable:
1      /* The page # that is the front buffer.  */
1      int displayed_page;
1      /* The page # that is the back buffer.  */
1      int render_page;
1 
1    Unacceptable:
1      int displayed_page;           /* The page # that is the front buffer. */
1      int render_page;              /* The page # that is the back buffer. */
1