Updated the template header file to use a doxygen top comment.

This commit is contained in:
jakeg00dwin 2024-06-16 20:06:52 -07:00
parent ed7b299a5e
commit fd261b27c6
1 changed files with 11 additions and 5 deletions

View File

@ -1,14 +1,20 @@
/* /**
* Author: username * @brief PUT_TEXT_HERE
* Date: todays_date * @details This file is...
* filename: module_name.h * @author username
* description: module_purpose * @date todays_date
* @copyright None
* @file module_name.h
*/ */
#ifndef module_name #ifndef module_name
#define module_name #define module_name
/**
* A function that adds two to a number
* @param a The first argument
*/
int add_two(int a); int add_two(int a);
#endif //module_name #endif //module_name