Last active
August 18, 2022 16:54
-
-
Save peisenhower/777266f52adba7cb2f03 to your computer and use it in GitHub Desktop.
C source file template. Code groupings and doxygen header.
This file contains 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
/** | |
* @file [file name].c | |
* @copyright [copy write holder] | |
* | |
* @brief [description] | |
*/ | |
/******************************************************************************* | |
* Includes | |
*******************************************************************************/ | |
/******************************************************************************* | |
* Defines | |
*******************************************************************************/ | |
/******************************************************************************* | |
* Local Types and Typedefs | |
*******************************************************************************/ | |
/******************************************************************************* | |
* Global Variables | |
*******************************************************************************/ | |
/******************************************************************************* | |
* Static Function Prototypes | |
*******************************************************************************/ | |
/******************************************************************************* | |
* Static Variables | |
*******************************************************************************/ | |
/******************************************************************************* | |
* Functions | |
*******************************************************************************/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment