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 ..?
|
|
Those are called Include guards. Once the header is included, it checks if a unique value (in this case When the code is included again, the first That prevent double declaration of any identifiers such as types, enums and static variables. |
|||||||||||||||
|