vote up 3 vote down star

I am on a large project, and have not really made any comment 'headers' in my program yet. I just started using SVN for the project the other day. I want to add the SVN tag $id$, but have not decided on any standard commenting.

So, my question to everyone here, is how does your initial comment block look in all your programs?

i.e:

/***************************************
* myProgram.c 
* revision: $id$
***************************************/
flag

should be community wiki – Neil Butterworth May 28 at 13:02
Mine almost always has the name of the previous program I was working on. – Nosredna May 28 at 14:20

7 Answers

vote up 2 vote down check

I don't use one. I don't need one.

link|flag
Neither do I. 15 chars. – Ben Schwehn May 28 at 13:05
1  
Me neither. Although one could argue embedding SCM revision history in the header is convenient, in practice it just ends up being a giant mess that ends up being removed. – Matt Rogish May 28 at 13:13
Looking for samples. – Mike Curry May 28 at 13:21
@Mike what sort of samples do you need? – Dave Van den Eynde May 28 at 13:40
Just a sample block, trying to decide what to go for. Makis posted a sample of his. – Mike Curry May 28 at 13:58
vote up 2 vote down

I personally use the same comments as the javadoc ones

/**
 * Your comment here 
 */
link|flag
vote up 1 vote down

It depends, but I don't like if they are too fancy. Something like this is enough for me:

/*
 * file.c
 *
 * Description:
 *
 * History:
 *
 * 
 */

Anything more complex is just annoying.

link|flag
vote up 0 vote down

Company boilerplate copyright + file author/owner and a small purpose section when relevant (eg: when the file contains a collection of small related classes with headers of their own)

link|flag
How do you add author when multiple people work on the same document? – a_m0d May 28 at 13:14
Looking for samples – Mike Curry May 28 at 13:22
Only the main code owner is listed. Other contributors will be part of the source control history. – Kena May 28 at 17:08
vote up 0 vote down

If I'm coding some open-source program I usually add a BSD license, otherwise there's no standard header comment.

link|flag
vote up 0 vote down

Any initial comment block is a wast of space if you have a version tracking software.

link|flag
A version tracking software can't guess for you what a method is doing. – Sylvain May 28 at 13:25
@Sylvain: an initial codeblock shouldn't document a method either. – Dave Van den Eynde May 28 at 13:42
Oh yeah that's right, forgot we were talking about an initial comment block. – Sylvain May 28 at 15:37

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.