File: license.cc

package info (click to toggle)
achilles 2-2
  • links: PTS
  • area: main
  • in suites: woody
  • size: 528 kB
  • ctags: 387
  • sloc: sh: 2,600; cpp: 2,067; makefile: 45
file content (13 lines) | stat: -rw-r--r-- 478 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include<iostream.h>
#include"defines.h"

bool ShowLicense() {
  cout << "Achilles " << ACHILLES_VERSION << ", Copyright (C) 2000 Matthew Danish" << endl;
  cout << "Achilles comes with ABSOLUTELY NO WARRANTY; for details" << endl;
  cout << "read the included file 'COPYING'.  This is free software, and" << endl;
  cout << "you are welcome to redistribute it under certain conditions," << endl;
  cout << "read the file 'COPYING' for information." << endl;
  return true;
}