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
* Date: todays_date
* filename: module_name.h
* description: module_purpose
/**
* @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