adding modf pow and round
This commit is contained in:
@@ -122,11 +122,14 @@ void ft_putnbrendl(int n);
|
||||
void ft_putnbrendl_fd(int n, int fd);
|
||||
char *ft_concat_free(char *str1, char *str2);
|
||||
int ft_abs(int n);
|
||||
double ft_abs_f(double n);
|
||||
double ft_fabs(double n);
|
||||
int ft_greater(int a, int b);
|
||||
int ft_smaller(int a, int b);
|
||||
int ft_sign(int i);
|
||||
int ft_sign_f(double i);
|
||||
double ft_modf(double x, double *int_part);
|
||||
double ft_pow(double base, int exponent);
|
||||
double ft_round(double x);
|
||||
int ft_sqrt(int i);
|
||||
void ft_free_tab(char **tab);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user