add ft_atof

This commit is contained in:
hugogogo
2026-04-29 00:52:48 +02:00
parent 2be81d5630
commit f86c2cf5cb
5 changed files with 67 additions and 9 deletions

View File

@@ -43,6 +43,7 @@ size_t ft_strlcat(char *dst, const char *src, size_t size);
char *ft_strnstr(const char *b, const char *l, size_t s);
int ft_atoi(const char *str);
long ft_atol(const char *str);
double ft_atof(const char *str);
void *ft_calloc(size_t count, size_t size);
char *ft_strdup(const char *s1);