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