AMO-Tools-Suite
v.0.9.0
Set of tools for calculating energy efficiency in industrial equipment
Main Page
+
Namespaces
Namespace List
+
Namespace Members
All
Enumerations
+
Classes
Class List
Class Index
Class Hierarchy
+
Class Members
+
All
a
b
c
d
e
f
g
h
i
l
m
o
p
r
s
t
v
w
+
Functions
a
b
c
d
e
f
g
h
i
l
m
o
p
r
s
t
v
w
Variables
Enumerations
Related Functions
+
Files
File List
+
File Members
All
Enumerations
Macros
•
All
Classes
Namespaces
Files
Functions
Variables
Enumerations
Friends
Macros
Pages
CMakeFiles
feature_tests.c
1
2
const
char
features[] = {
"\n"
3
"C_FEATURE:"
4
#if ((__clang_major__ * 100) + __clang_minor__) >= 400
5
"1"
6
#else
7
"0"
8
#endif
9
"c_function_prototypes\n"
10
"C_FEATURE:"
11
#if ((__clang_major__ * 100) + __clang_minor__) >= 400 && defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L
12
"1"
13
#else
14
"0"
15
#endif
16
"c_restrict\n"
17
"C_FEATURE:"
18
#if ((__clang_major__ * 100) + __clang_minor__) >= 400 && defined(__STDC_VERSION__) && __STDC_VERSION__ >= 201112L
19
"1"
20
#else
21
"0"
22
#endif
23
"c_static_assert\n"
24
"C_FEATURE:"
25
#if ((__clang_major__ * 100) + __clang_minor__) >= 400 && defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L
26
"1"
27
#else
28
"0"
29
#endif
30
"c_variadic_macros\n"
31
32
};
33
34
int
main(
int
argc,
char
** argv) { (void)argv;
return
features[argc]; }
Generated by
1.8.13