diff --git a/.template_files/modules/module_name.h b/.template_files/modules/module_name.h index e3907fd..91acb63 100644 --- a/.template_files/modules/module_name.h +++ b/.template_files/modules/module_name.h @@ -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