ft_atoi: initial implementation

This commit is contained in:
Khaïs COLIN 2024-10-16 16:14:58 +02:00
parent 0a1e2f2b37
commit fce032ce2f
3 changed files with 51 additions and 3 deletions

View file

@ -6,7 +6,7 @@
/* By: kcolin <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/10/15 10:11:54 by kcolin #+# #+# */
/* Updated: 2024/10/16 15:25:46 by kcolin ### ########.fr */
/* Updated: 2024/10/16 16:06:06 by kcolin ### ########.fr */
/* */
/* ************************************************************************** */
@ -42,4 +42,6 @@ int ft_memcmp(const void *s1, const void *s2, size_t n);
char *ft_strnstr(const char *big, const char *little, size_t len);
int ft_atoi(const char *nptr);
#endif