- Function declaration/definition (use M-x make-function)
/****************************************************************
* TAG( function_name )
* ...
*/
- Short comments (at the end of a line or a line by themselves).
/* Comment. (Note capitalization and periods.) */
- Major comments (file headers, other longer comments )
/* This is the comment which takes more than one line and
* must be put in major comment form.
*/
- Every external function declaration and all function definitions
must have a tagged comment. The description should only be with the
function definition. Use M-x
make-function for full function headers where appropriate.
There is no blank line between the comment and the beginning of a function
declaration or definition.
- Use reasonably correct English. Use capital letters and periods
even though you may not not have completly correct sentences.