ft_itoa: initial implementation

I wrote this in a single session, with 0 errors on the first try!
This commit is contained in:
Khaïs COLIN 2024-10-17 17:37:10 +02:00
parent d1b5c7b687
commit 08bae77518
3 changed files with 78 additions and 2 deletions

View file

@ -6,7 +6,7 @@
# By: kcolin <marvin@42.fr> +#+ +:+ +#+ #
# +#+#+#+#+#+ +#+ #
# Created: 2024/10/14 13:43:59 by kcolin #+# #+# #
# Updated: 2024/10/17 14:12:23 by kcolin ### ########.fr #
# Updated: 2024/10/17 17:07:32 by kcolin ### ########.fr #
# #
# **************************************************************************** #
@ -38,7 +38,8 @@ SOURCES = ft_isalpha.c \
ft_substr.c \
ft_strjoin.c \
ft_strtrim.c \
ft_split.c
ft_split.c \
ft_itoa.c
OBJECTS = $(SOURCES:.c=.o)
CC = gcc