-
Notifications
You must be signed in to change notification settings - Fork 49
/
erfaversion.c
51 lines (35 loc) · 951 Bytes
/
erfaversion.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
50
51
/*
** Copyright (C) 2016-2017, NumFOCUS Foundation.
**
** Licensed under a 3-clause BSD style license - see LICENSE
**
** This file is NOT derived from SOFA sources
*/
/* Define to the version of this package. */
#define PACKAGE_VERSION "1.7.0"
/* Define to the major version of this package. */
#define PACKAGE_VERSION_MAJOR 1
/* Define to the micro version of this package. */
#define PACKAGE_VERSION_MICRO 0
/* Define to the minor version of this package. */
#define PACKAGE_VERSION_MINOR 7
/* Define to the version of SOFA */
#define SOFA_VERSION "20190722"
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif /* HAVE_CONFIG_H */
const char* eraVersion(void) {
return PACKAGE_VERSION;
}
int eraVersionMajor(void) {
return PACKAGE_VERSION_MAJOR;
}
int eraVersionMinor(void) {
return PACKAGE_VERSION_MINOR;
}
int eraVersionMicro(void) {
return PACKAGE_VERSION_MICRO;
}
const char* eraSofaVersion(void) {
return SOFA_VERSION;
}