My Project
Loading...
Searching...
No Matches
version.h
1/*
2 * (C) Copyright 2014- ECMWF.
3 *
4 * This software is licensed under the terms of the Apache Licence Version 2.0
5 * which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
6 * In applying this licence, ECMWF does not waive the privileges and immunities
7 * granted to it by virtue of its status as an intergovernmental organisation
8 * nor does it submit to any jurisdiction.
9 */
10
11#ifndef ectrans_version_h
12#define ectrans_version_h
13
14#ifndef __cplusplus
15// C99 header, defines bool as _Bool ( only required for C compiler )
16#include <stdbool.h>
17#else
18extern "C" {
19#endif
20
21const char * ectrans_version();
22
23unsigned int ectrans_version_int();
24
25const char * ectrans_version_str();
26
27const char * ectrans_git_sha1();
28
29const char * ectrans_git_sha1_abbrev(unsigned int length);
30
31const char * ectrans_fiat_version();
32
33unsigned int ectrans_fiat_version_int();
34
35const char * ectrans_fiat_version_str();
36
37const char * ectrans_fiat_git_sha1();
38
39const char * ectrans_fiat_git_sha1_abbrev(unsigned int length);
40
41#ifdef __cplusplus
42}
43#endif
44
45#endif