adding modf pow and round

This commit is contained in:
hugogogo
2026-05-07 00:58:54 +02:00
parent 78f6a2d9ba
commit b768ac1a14
6 changed files with 79 additions and 3 deletions

View File

@@ -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);