lw-build-system/scripts/build.tests.c/template
Laurence Withers 0e9f48ff2d Big copyright update
Uses new-style copyright notices and improves consistency a bit. Removes the
old KATE_MODELINE stuff.
2010-11-25 15:32:52 +00:00

37 lines
508 B
Text

/* @P@/src/@NAME@/xxx.c
*
* Copyright: ©@YEAR@, @COPYRIGHT@
* Author: @AUTHOR@ <@EMAIL@>
* License: GPLv3
*/
@TEST_HEADERS@
#include <stdio.h>
#include <string.h>
int
main(int argc, char* argv[])
{
int ret = 0;
if(argc == 2 && !strcmp(argv[1], "--print-summary")) {
fputs("One line summary.\n", stdout);
return 0;
}
if(argc == 1) {
/* empty argument list */
}
/* TODO */
return ret;
}
/* options for text editors
vim: @VIM_MODELINE@
*/