/usr/include/erfaextra.h is in liberfa-dev 1.4.0-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 52 53 54 55 56 57 58 | /*
** Copyright (C) 2016-2017, NumFOCUS Foundation.
**
** Licensed under a 3-clause BSD style license - see LICENSE
**
** This file is NOT derived from SOFA sources
*/
#ifndef _ERFA_EXTRA_H
#define _ERFA_EXTRA_H
#ifdef __cplusplus
extern "C" {
#endif
/*
** Returns the package version
** as defined in configure.ac
** in string format
*/
const char* eraVersion();
/*
** Returns the package major version
** as defined in configure.ac
** as integer
*/
int eraVersionMajor();
/*
** Returns the package minor version
** as defined in configure.ac
** as integer
*/
int eraVersionMinor();
/*
** Returns the package micro version
** as defined in configure.ac
** as integer
*/
int eraVersionMicro();
/*
** Returns the orresponding SOFA version
** as defined in configure.ac
** in string format
*/
const char* eraSofaVersion();
#ifdef __cplusplus
}
#endif
#endif /* _ERFA_EXTRA_H */
|