2016-04-24 22:47:48 +03:00
|
|
|
int test_a(void);
|
|
|
|
int test_b(void);
|
2016-05-15 18:59:43 +03:00
|
|
|
int test_c(void);
|
|
|
|
int test_d(void);
|
2016-04-24 22:47:48 +03:00
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
int main(int argc, char* argv[])
|
2016-04-24 22:47:48 +03:00
|
|
|
{
|
2016-05-16 17:34:04 +03:00
|
|
|
test_a();
|
|
|
|
test_b();
|
2016-05-15 18:59:43 +03:00
|
|
|
test_c();
|
|
|
|
test_d();
|
2016-05-16 17:34:04 +03:00
|
|
|
return 0;
|
2016-04-24 22:47:48 +03:00
|
|
|
}
|