cmake_cpputest_template/.template_files/modules/module_name.c

17 lines
220 B
C
Raw Normal View History

/*
* Author: username
* Date: todays_date
* filename: module_name.c
* description: module_purpose
*/
#include "module_name.h"
// dumb test function
int add_two(int a)
{
int b = a;
b += 2;
return b;
}