You are here

Banners for Functions

5 February, 2015 - 11:20

Note the use of comments in the form of a banner before each function.

Example 6.7: Comments as a Banner

//****************************************************** // main //****************************************************** 

The function name is placed with two lines of asterisks. It makes it extremely easy to find each function definition because you don't have to read the functions to see where the one ends and the next one begins. You can quickly read the function names within the banners.