1 /*
2  * (c) 2010-2018 Thomas d'Otreppe <tdotreppe@aircrack-ng.org>
3  *
4  * This program is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU General Public License as
6  * published by the Free Software Foundation; either version 2 of the
7  * License, or (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful, but
10  * is provided AS IS, WITHOUT ANY WARRANTY; without even the implied
11  * warranty of MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, and
12  * NON-INFRINGEMENT.  See the GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
17  * MA 02110-1301, USA.
18  *
19  * In addition, as a special exception, the copyright holders give
20  * permission to link the code of portions of this program with the
21  * OpenSSL library under certain conditions as described in each
22  * individual source file, and distribute linked combinations
23  * including the two.
24  * You must obey the GNU General Public License in all respects
25  * for all of the code used other than OpenSSL.  If you modify
26  * file(s) with this exception, you may extend this exception to your
27  * version of the file(s), but you are not obligated to do so.  If you
28  * do not wish to do so, delete this exception statement from your
29  * version.  If you delete this exception statement from all source
30  * files in the program, then also delete it here.
31  */
32 
33 #define _MAJ 1
34 #define _MIN 5
35 #define _SUB_MIN 2
36 #define _BETA 0
37 #define _RC 0
38 #define WEBSITE "https://aircrack-ng.org"
39 
40 extern char * getVersion(const char * progname,
41 						 const unsigned int maj,
42 						 const unsigned int min,
43 						 const unsigned int submin,
44 						 const char * rev,
45 						 const unsigned int beta,
46 						 const unsigned int rc);
47