1
 2
 3
 4
 5
 6
 7
 8
 9
10
#ifndef __MATH_FUNCTIONS_H__
#define __MATH_FUNCTIONS_H__

int power(int base, int power);
bool is_divisible(int num, int divisor);
bool is_even(int num);
bool is_odd(int num);
const char* get_day_name(int weekday);

#endif /* end of include guard: __MATH_FUNCTIONS_H__ */

© Copyright 2024 Alexander J. Quinn & David Burnett         This content is protected and may not be shared, uploaded, or distributed.