ajout des fonctions atol free_tab et isnumber

This commit is contained in:
hugogogo
2021-09-27 16:51:48 +02:00
parent c335eb1f6a
commit d622367cfd
11 changed files with 221 additions and 23 deletions

View File

@@ -14,6 +14,14 @@ DEPS = $(_DEP:%.h=$(IDIR)/%.h)
CFLAGS = -I$(IDIR)
CFLAGS += -Wall -Wextra -Werror -g3
# ft_putstr
# ft_atoi
# ft_putchar
# ft_putnbrendl
# ft_putnbrendl_fd
# ft_putchar_fd
# ft_putnbr_fd
SRCS = ft_memset.c \
ft_bzero.c \
ft_memcpy.c \
@@ -25,6 +33,7 @@ SRCS = ft_memset.c \
ft_isalpha.c \
ft_isdigit.c \
ft_isalnum.c \
ft_isnumber.c \
ft_isascii.c \
ft_isprint.c \
ft_toupper.c \
@@ -37,6 +46,7 @@ SRCS = ft_memset.c \
ft_strlcat.c \
ft_strnstr.c \
ft_atoi.c \
ft_atol.c \
ft_calloc.c \
ft_strdup.c \
\
@@ -107,7 +117,8 @@ SRCS = ft_memset.c \
ft_greater.c \
ft_smaller.c \
ft_sign.c \
ft_sqrt.c
ft_sqrt.c \
ft_free_tab.c
ODIR = ./builds