cmake-cmocka-template/.template_files/modules/module_name.c

17 lines
219 B
C
Raw Normal View History

2024-03-01 06:49:19 +00:00
/*
* Author: username
* Date: todays_year
* 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;
}