Last active
January 29, 2019 23:00
-
-
Save tomdaley92/a588667f35aefcfa29df24830bd48c0b to your computer and use it in GitHub Desktop.
C/C++ Header guards
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#ifndef FILENAME_H | |
#define FILENAME_H | |
/* Declarations of this file */ | |
#endif /* FILENAME_H */ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment