MultiMarkdown-6/templates/template.c.in
2015-11-12 11:23:28 -05:00

38 lines
368 B
C

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