MultiMarkdown-6/templates/template.c.in
2017-01-18 22:43:15 -05:00

38 lines
384 B
C

/**
@My_Project_Title@ -- @My_Project_Description@
@file file.c
@brief
@author @My_Project_Author@
@bug
**/
/*
@My_Project_Copyright@
@My_Project_License_Indented@
*/
#include "file.h"
static int void_function(void) {
return 0;
}
#ifdef TEST
static void Test_void_function(CuTest* tc) {
int test = void_function();
CuAssertIntEquals(tc, 0, test);
}
#endif