cmake_cpputest_template_avr/.template_files/modules/module_name.h

21 lines
310 B
C
Raw Normal View History

/**
* @brief PUT_TEXT_HERE
* @details This file is...
* @author username
* @date todays_date
* @copyright None
* @file module_name.h
2024-06-14 23:16:30 +00:00
*/
#ifndef module_name
#define module_name
/**
* A function that adds two to a number
* @param a The first argument
*/
2024-06-14 23:16:30 +00:00
int add_two(int a);
#endif //module_name