cmake_cpputest_template_avr/.template_files/modules/module_name.h

21 lines
316 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
*/
2024-06-27 00:33:10 +00:00
#ifndef module_name_H
#define module_name_H
2024-06-14 23:16:30 +00:00
/**
* 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);
2024-06-27 00:33:10 +00:00
#endif //module_name_H