moved some unused functions, list and put, in deleted folder
This commit is contained in:
91
Makefile
91
Makefile
@@ -14,14 +14,6 @@ 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 \
|
||||
@@ -29,7 +21,10 @@ SRCS = ft_memset.c \
|
||||
ft_memmove.c \
|
||||
ft_memchr.c \
|
||||
ft_memcmp.c \
|
||||
ft_strlen.c \
|
||||
ft_memalloc.c \
|
||||
ft_memdel.c \
|
||||
ft_calloc.c \
|
||||
\
|
||||
ft_isalpha.c \
|
||||
ft_isdigit.c \
|
||||
ft_isalnum.c \
|
||||
@@ -38,6 +33,8 @@ SRCS = ft_memset.c \
|
||||
ft_isprint.c \
|
||||
ft_toupper.c \
|
||||
ft_tolower.c \
|
||||
\
|
||||
ft_strlen.c \
|
||||
ft_strchr.c \
|
||||
ft_strrchr.c \
|
||||
ft_strchrset.c \
|
||||
@@ -45,37 +42,10 @@ SRCS = ft_memset.c \
|
||||
ft_strlcpy.c \
|
||||
ft_strlcat.c \
|
||||
ft_strnstr.c \
|
||||
ft_atoi.c \
|
||||
ft_atol.c \
|
||||
ft_calloc.c \
|
||||
ft_strdup.c \
|
||||
\
|
||||
ft_substr.c \
|
||||
ft_strjoin.c \
|
||||
ft_strtrim.c \
|
||||
ft_split.c \
|
||||
ft_itoa.c \
|
||||
ft_utoa.c \
|
||||
ft_strmapi.c \
|
||||
ft_putchar_fd.c \
|
||||
ft_putstr_fd.c \
|
||||
ft_putendl_fd.c \
|
||||
ft_putnbr_fd.c \
|
||||
\
|
||||
ft_lstcreate.c \
|
||||
ft_lstpush_back.c \
|
||||
ft_lstpush_front.c \
|
||||
ft_lstloop.c \
|
||||
ft_lstloop_back.c \
|
||||
ft_lstbegin.c \
|
||||
ft_lstend.c \
|
||||
ft_lstfind.c \
|
||||
ft_lstinsert.c \
|
||||
ft_lsterase.c \
|
||||
ft_lstfree.c \
|
||||
ft_lstlen.c \
|
||||
ft_lstcopy.c \
|
||||
\
|
||||
ft_strcat.c \
|
||||
ft_strcmp.c \
|
||||
ft_strcpy.c \
|
||||
@@ -91,15 +61,33 @@ SRCS = ft_memset.c \
|
||||
ft_strmap.c \
|
||||
ft_strnequ.c \
|
||||
ft_strnew.c \
|
||||
ft_memalloc.c \
|
||||
ft_memdel.c \
|
||||
ft_putchar.c \
|
||||
ft_putendl.c \
|
||||
ft_putnbr.c \
|
||||
ft_putnbrendl.c \
|
||||
ft_putnbrendl_fd.c \
|
||||
ft_substr.c \
|
||||
ft_split.c \
|
||||
\
|
||||
ft_atoi.c \
|
||||
ft_atol.c \
|
||||
ft_itoa.c \
|
||||
ft_utoa.c \
|
||||
\
|
||||
ft_putchar_fd.c \
|
||||
ft_putstr_fd.c \
|
||||
ft_putnbr_fd.c \
|
||||
ft_putnbrbase.c \
|
||||
ft_putstr.c \
|
||||
\
|
||||
ft_lstcreate.c \
|
||||
ft_lstpush_back.c \
|
||||
ft_lstpush_front.c \
|
||||
ft_lstloop.c \
|
||||
ft_lstloop_back.c \
|
||||
ft_lstbegin.c \
|
||||
ft_lstend.c \
|
||||
ft_lstfind.c \
|
||||
ft_lstinsert.c \
|
||||
ft_lsterase.c \
|
||||
ft_lstfree.c \
|
||||
ft_lstlen.c \
|
||||
ft_lstcopy.c \
|
||||
\
|
||||
ft_any.c \
|
||||
ft_atoibase.c \
|
||||
ft_convertbase.c \
|
||||
@@ -126,9 +114,8 @@ SRCS = ft_memset.c \
|
||||
\
|
||||
ft_arrintchr.c
|
||||
|
||||
# ft_lstremove.c \
|
||||
ft_lstfind.c
|
||||
# ft_lstnew.c \
|
||||
# deleted : \
|
||||
ft_lstnew.c \
|
||||
ft_lstadd_front.c \
|
||||
ft_lstsize.c \
|
||||
ft_lstlast.c \
|
||||
@@ -136,7 +123,15 @@ SRCS = ft_memset.c \
|
||||
ft_lstdelone.c \
|
||||
ft_lstclear.c \
|
||||
ft_lstiter.c \
|
||||
ft_lstmap.c
|
||||
ft_lstmap.c \
|
||||
\
|
||||
ft_putstr.c \
|
||||
ft_putchar.c \
|
||||
ft_putendl.c \
|
||||
ft_putnbr.c \
|
||||
ft_putnbrendl.c \
|
||||
ft_putnbrendl_fd.c \
|
||||
ft_putendl_fd.c \
|
||||
|
||||
|
||||
ODIR = ./builds
|
||||
|
||||
Reference in New Issue
Block a user