
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@2423 212acab6-be3b-0410-9dea-997c60f758d6
17 lines
214 B
C
17 lines
214 B
C
/*
|
|
* licence.c: licence text
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
|
|
static char *licencetext[] = {
|
|
"FIXME: licence text goes here",
|
|
NULL
|
|
};
|
|
|
|
void licence(void)
|
|
{
|
|
char **p;
|
|
for (p = licencetext; *p; p++)
|
|
puts(*p);
|
|
}
|