2016-07-09 11:21:54 +02:00
|
|
|
int test_a(void);
|
|
|
|
int test_b(void);
|
|
|
|
int test_c(void);
|
|
|
|
int test_d(void);
|
2019-11-11 23:01:05 +01:00
|
|
|
int test_e(void);
|
|
|
|
int test_f(void);
|
2016-07-09 11:21:54 +02:00
|
|
|
|
|
|
|
int main(int argc, char* argv[])
|
|
|
|
{
|
|
|
|
test_a();
|
|
|
|
test_b();
|
|
|
|
test_c();
|
|
|
|
test_d();
|
2019-11-11 23:01:05 +01:00
|
|
|
test_e();
|
|
|
|
test_f();
|
2016-07-09 11:21:54 +02:00
|
|
|
return 0;
|
|
|
|
}
|