[Home]  [Edit this page]  [Recent Changes]  [Special Pages]  [Help
CIncludeGuard

(C) #include guard

This  ?preprocessor statements #ifndef?#define and #endif can be used for #include guards. These prevent a header file (.h) to be #included multiple times, causing a redeclaration error.

An #include guard

  1. ifndef __MYHEADERFILE_H
  2. define __MYHEADERFILE_H
//Your header (.h) file
  1. endif


An implementation file (.c) does not have #include guards, because they do not get #included, but 'Added to Project' instead.

Always write internal #include guards. Never write external #include guards.

'#include guard' links



last edited (November 17, 2006) by bilderbikkel, Number of views: 873, Current Rev: 1

[Edit this page]  [Page history]  [What links here]  [Discuss this topic]  [Printer Friendly]  

Members

Username:

Password:


Register
Forgot Password?




Programmers Heaven - for .NET, Java, C/C++ and WEB Developers!
© 1996-2008 Community Networks Ltd. All rights reserved. Reproduction in whole or in part, in any form or medium without express written permission is prohibited. Violators of this policy may be subject to legal action. Please read Terms Of Use and Privacy Statement for more information. Development by Tore Nestenius at .NET Consultant - Synchron Data.