14 lines
189 B
C
14 lines
189 B
C
/*
|
|
* @file module_name.h
|
|
* @Author Jake Goodwin
|
|
* @Date todays_date
|
|
* @brief module_purpose
|
|
*/
|
|
|
|
#ifndef module_name
|
|
#define module_name
|
|
|
|
|
|
int add_two(int a);
|
|
|
|
#endif //module_name
|