blob: a51f283b5be7f2642be105225dd0cb8cfe3bb286 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
#ifndef TESTS_BASIC_H
#define TESTS_BASIC_H
int test_abs(void);
int test_add(void);
int test_mul(void);
int test_div(void);
int test_sub();
#endif // TESTS_BASIC_H
|