[go: up one dir, main page]

File: license.cc

package info (click to toggle)
achilles 2-8.2
  • links: PTS
  • area: main
  • in suites: stretch
  • size: 548 kB
  • sloc: sh: 2,600; cpp: 2,069; makefile: 49
file content (14 lines) | stat: -rw-r--r-- 497 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
using namespace std;
#include<iostream>
#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;
}