source: trunk/FACT++/erfa/src/erfaextra.h@ 19128

Last change on this file since 19128 was 18922, checked in by tbretz, 7 years ago
Updated to ERFA 1.4.0
File size: 895 bytes
Line 
1/*
2** Copyright (C) 2016-2017, NumFOCUS Foundation.
3**
4** Licensed under a 3-clause BSD style license - see LICENSE
5**
6** This file is NOT derived from SOFA sources
7*/
8
9
10#ifndef _ERFA_EXTRA_H
11#define _ERFA_EXTRA_H
12
13#ifdef __cplusplus
14extern "C" {
15#endif
16
17
18/*
19** Returns the package version
20** as defined in configure.ac
21** in string format
22*/
23const char* eraVersion();
24
25/*
26** Returns the package major version
27** as defined in configure.ac
28** as integer
29*/
30int eraVersionMajor();
31
32/*
33** Returns the package minor version
34** as defined in configure.ac
35** as integer
36*/
37int eraVersionMinor();
38
39/*
40** Returns the package micro version
41** as defined in configure.ac
42** as integer
43*/
44int eraVersionMicro();
45
46/*
47** Returns the orresponding SOFA version
48** as defined in configure.ac
49** in string format
50*/
51const char* eraSofaVersion();
52
53
54#ifdef __cplusplus
55}
56#endif
57
58#endif /* _ERFA_EXTRA_H */
59
Note: See TracBrowser for help on using the repository browser.