Bump CLOOG_VERSION_REVISION to 5.
[cloog-ppl.git] / include / cloog / version.h
blobf718df6b85580d675c20d31c0dcb72aeb10da687
1 /******************************************************************************
2 * CLooG : the Chunky Loop Generator (experimental) *
3 ******************************************************************************
4 * *
5 * Copyright (C) 2001-2008 Cedric Bastoul *
6 * *
7 * This is free software; you can redistribute it and/or modify it under the *
8 * terms of the GNU General Public License as published by the Free Software *
9 * Foundation; either version 2 of the License, or (at your option) any later *
10 * version. *
11 * *
12 * This software is distributed in the hope that it will be useful, but *
13 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY *
14 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License *
15 * for more details. *
16 * *
17 * You should have received a copy of the GNU General Public License along *
18 * with software; if not, write to the Free Software Foundation, Inc., *
19 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA *
20 * *
21 * CLooG, the Chunky Loop Generator *
22 * Written by Cedric Bastoul, Cedric.Bastoul@inria.fr *
23 * *
24 ******************************************************************************/
27 #ifndef CLOOG_VERSION_H
28 #define CLOOG_VERSION_H
29 #if defined(__cplusplus)
30 extern "C"
32 #endif
34 #define CLOOG_BITS "64"
36 /* The major number of the CLooG version. */
37 #define CLOOG_VERSION_MAJOR 0
39 /* The minor number of the CLooG version. */
40 #define CLOOG_VERSION_MINOR 15
42 /* The revision number of the CLooG version. */
43 #define CLOOG_VERSION_REVISION 5
45 /* The beta number of the CLooG version. This is zero for official
46 releases and nonzero for development snapshots. */
47 #define CLOOG_VERSION_BETA 0
49 /* A string containing the CLooG version.
51 Let M and m denote the numbers associated to CLooG_VERSION_MAJOR and
52 CLooG_VERSION_MINOR, respectively. The format of CLooG_VERSION is M
53 "." m if both CLooG_VERSION_REVISION (r) and CLooG_VERSION_BETA
54 (b) are zero, M "." m "pre" b if CLooG_VERSION_REVISION is zero and
55 CLooG_VERSION_BETA is not zero, M "." m "." r if
56 CLooG_VERSION_REVISION is not zero and CLooG_VERSION_BETA is zero, M
57 "." m "." r "pre" b if neither CLooG_VERSION_REVISION nor
58 CLooG_VERSION_BETA are zero. */
59 #define CLOOG_VERSION "0.15"
61 extern int ppl_version_major (void);
62 extern int ppl_version_minor (void);
63 extern int ppl_version_revision (void);
64 extern int ppl_version_beta (void);
65 extern const char *cloog_version(void);
67 #if defined(__cplusplus)
69 #endif
70 #endif /* define _H */