1
1
mirror of https://github.com/theoludwig/libcproject.git synced 2024-09-19 21:35:53 +02:00
libcproject/test/mathematics_test.h
2023-01-07 19:41:04 +01:00

21 lines
315 B
C

#ifndef __MATHEMATICS_TEST__
#define __MATHEMATICS_TEST__
#include <assert.h>
#include "libcproject.h"
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