My Project
Toggle main menu visibility
Loading...
Searching...
No Matches
src
transi
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
18
extern
"C"
{
19
#endif
20
21
const
char
* ectrans_version();
22
23
unsigned
int
ectrans_version_int();
24
25
const
char
* ectrans_version_str();
26
27
const
char
* ectrans_git_sha1();
28
29
const
char
* ectrans_git_sha1_abbrev(
unsigned
int
length);
30
31
const
char
* ectrans_fiat_version();
32
33
unsigned
int
ectrans_fiat_version_int();
34
35
const
char
* ectrans_fiat_version_str();
36
37
const
char
* ectrans_fiat_git_sha1();
38
39
const
char
* ectrans_fiat_git_sha1_abbrev(
unsigned
int
length);
40
41
#ifdef __cplusplus
42
}
43
#endif
44
45
#endif
Generated by
1.17.0