Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have been seeing code like this usually in the start of header files

#ifndef HEADERFILE_H
#define HEADERFILE_H

and at the end of the file is

#endif

I am confused about the purpose of this ..?

share|improve this question
2  
+1 - I too had same doubt, and got much more good answer here, may be useful for future visitors : stackoverflow.com/q/3246803/1134940 – Abid Rahman K Dec 11 '12 at 5:27

1 Answer

up vote 69 down vote accepted

Those are called Include guards.

Once the header is included, it checks if a unique value (in this case HEADERFILE_H) is defined. Then if it's not defined, it defines it and continues to the rest of the page.

When the code is included again, the first ifndef fails, resulting in a blank file.

That prevent double declaration of any identifiers such as types, enums and static variables.

share|improve this answer
Thank you for the quick answer :) – Asad Khan Oct 31 '09 at 10:16
My pleasure :) 15chrlmt – LiraNuna Oct 31 '09 at 10:18
3  
Mmm interresting. I once quited VC++ cuz it gave me errors about double defines. Nevermind I'm an Objective-C coder now =) – rightfold Oct 31 '09 at 10:19
Koning Baard XIV: VC even has a #pragma once which does the same :-) – Јοеу Oct 31 '09 at 10:23
10  
Also it prevents recursive inclusions... Imagine "alice.h" includes "bob.h" and "bob.h" includes "alice.h" and they don't have include guards... – Kevin D. Oct 31 '09 at 10:39
show 1 more comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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