OSDN Git Service

2013.10.24
[uclinux-h8/uClinux-dist.git] / freeswan / lib / copyright.c
1 /*
2  * return IPsec copyright notice
3  * Copyright (C) 2001, 2002  Henry Spencer.
4  * 
5  * This library is free software; you can redistribute it and/or modify it
6  * under the terms of the GNU Library General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or (at your
8  * option) any later version.  See <http://www.fsf.org/copyleft/lgpl.txt>.
9  * 
10  * This library is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
12  * or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Library General Public
13  * License for more details.
14  *
15  * RCSID $Id: copyright.c,v 1.2 2002/02/25 20:33:11 henry Exp $
16  */
17 #include "internal.h"
18 #include "freeswan.h"
19
20 static const char *co[] = {
21  "Copyright (C) 1999, 2000, 2001, 2002  Henry Spencer, Richard Guy Briggs,",
22  "    D. Hugh Redelmeier, Sandy Harris, Claudia Schmeing,",
23  "    Michael Richardson, Angelos D. Keromytis, John Ioannidis.",
24  "",
25  "This program is free software; you can redistribute it and/or modify it",
26  "under the terms of the GNU General Public License as published by the",
27  "Free Software Foundation; either version 2 of the License, or (at your",
28  "option) any later version.  See <http://www.fsf.org/copyleft/gpl.txt>.",
29  "",
30  "This program is distributed in the hope that it will be useful, but",
31  "WITHOUT ANY WARRANTY; without even the implied warranty of",
32  "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General",
33  "Public License (file COPYING in the distribution) for more details.",
34  NULL
35 };
36
37 /*
38  - ipsec_copyright_notice - return copyright notice, as a vector of strings
39  */
40 const char **
41 ipsec_copyright_notice()
42 {
43         return co;
44 }