Skip to content

Instantly share code, notes, and snippets.

@peisenhower
Last active August 18, 2022 16:54
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save peisenhower/777266f52adba7cb2f03 to your computer and use it in GitHub Desktop.
Save peisenhower/777266f52adba7cb2f03 to your computer and use it in GitHub Desktop.
C source file template. Code groupings and doxygen header.
/**
* @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