Adding printf & strcpy

This commit is contained in:
Raphael 2024-10-31 16:17:02 +01:00
parent c1790da4b4
commit e1d33272f7
13 changed files with 385 additions and 67 deletions

View file

@ -6,7 +6,7 @@
/* By: rparodi <rparodi@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/10/31 14:57:24 by rparodi #+# #+# */
/* Updated: 2024/10/31 15:10:01 by rparodi ### ########.fr */
/* Updated: 2024/10/31 15:27:40 by rparodi ### ########.fr */
/* */
/* ************************************************************************** */
@ -20,8 +20,8 @@
# include <limits.h>
# include <fcntl.h>
int ft_atoi(const char *nptr);
char *ft_itoa(int n);
char *ft_itoa(int n);
int ft_atoi(const char *nptr);
long long int ft_atoll(const char *nptr);
#endif