/* * 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; }