21 lines
310 B
C
21 lines
310 B
C
/**
|
|
* @brief PUT_TEXT_HERE
|
|
* @details This file is...
|
|
* @author username
|
|
* @date todays_date
|
|
* @copyright None
|
|
* @file module_name.h
|
|
*/
|
|
|
|
#ifndef module_name
|
|
#define module_name
|
|
|
|
|
|
/**
|
|
* A function that adds two to a number
|
|
* @param a The first argument
|
|
*/
|
|
int add_two(int a);
|
|
|
|
#endif //module_name
|