mirror of
https://github.com/theoludwig/libcproject.git
synced 2024-11-08 22:31:31 +01:00
17 lines
268 B
C
17 lines
268 B
C
#ifndef __MATHEMATICS_TEST__
|
|
#define __MATHEMATICS_TEST__
|
|
|
|
void mathematics_test();
|
|
|
|
void mathematics_absolute_value_test();
|
|
|
|
void mathematics_pow_test();
|
|
|
|
void mathematics_root_test();
|
|
|
|
void mathematics_square_root_test();
|
|
|
|
void mathematics_factorial_test();
|
|
|
|
#endif
|