Skip to content

Instantly share code, notes, and snippets.

@ovidiucs
Forked from peisenhower/source-template.c
Created December 15, 2019 12:57
Show Gist options
  • Save ovidiucs/58021feecdb2057b591d78bca6f1bd93 to your computer and use it in GitHub Desktop.
Save ovidiucs/58021feecdb2057b591d78bca6f1bd93 to your computer and use it in GitHub Desktop.
C source file template. Code groupings and doxygen header.
/**
* @file [file name].c
* @authors [author]
* @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