-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlicense.c
49 lines (46 loc) · 2.42 KB
/
license.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#include <stdio.h>
/* --------------------------------------------------------------------------
* PD_Post: a SPICE post-processor/calculator
* for viewing and measuring piece-wise-linear waveform files
*
* Copyright (C) 2006-2014 by Richard C. Walker.
* Copyright (C) 1998-2002 Stephen G. Tell.
* Copyright 1998 D. Jeff Dionne.
*
* Author's email: walker AT omnisterra DOT com
* Post homepage: http://www.omnisterra.com/walker/linux
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License, version 2,
* which you should have received in the file "COPYING" along with this
* program; if not, write to the Free Software Foundation, Inc., 675
* Mass Ave, Cambridge, MA 02139, USA.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*-------------------------------------------------------------------------- */
void license() {
printf("/* --------------------------------------------------------------------\n");
printf(" PD_Post: a SPICE post-processor/calculator for\n");
printf(" viewing and measuring piece-wise-linear waveforms.\n");
printf("\n");
printf(" Copyright (C) 2006-2018 by Richard C. Walker.\n");
printf(" Copyright (C) 1998-2002 Stephen G. Tell.\n");
printf(" Copyright 1998 D. Jeff Dionne.\n");
printf("\n");
printf(" Author's email: walker AT omnisterra DOT com\n");
printf(" Homepage: http://www.omnisterra.com/walker/linux/\n");
printf("\n");
printf(" This program is free software; you can redistribute it and/or\n");
printf(" modify it under the terms of the GNU General Public License,\n");
printf(" version 2, which you should have received in the file \"COPYING\"\n");
printf(" along with this program; if not, write to the Free Software\n");
printf(" Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.\n");
printf("\n");
printf(" This program is distributed in the hope that it will be useful,\n");
printf(" but WITHOUT ANY WARRANTY; without even the implied warranty of\n");
printf(" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n");
printf("-------------------------------------------------------------------- */\n");
printf("\n");
}