summaryrefslogtreecommitdiffstats
path: root/libft/Makefile
diff options
context:
space:
mode:
authorJozanLeClerc <bousset.rudy@gmail.com>2020-08-04 14:28:35 +0200
committerJozanLeClerc <bousset.rudy@gmail.com>2020-08-04 14:28:35 +0200
commitd1ee0c0e55f75432da026f5e0e7cf15cee6918da (patch)
treef0ba3ebf5f6ba8d2ce093938f36602d64e7b43ff /libft/Makefile
parentUnset is fine (diff)
download42-minishell-d1ee0c0e55f75432da026f5e0e7cf15cee6918da.tar.gz
42-minishell-d1ee0c0e55f75432da026f5e0e7cf15cee6918da.tar.bz2
42-minishell-d1ee0c0e55f75432da026f5e0e7cf15cee6918da.tar.xz
42-minishell-d1ee0c0e55f75432da026f5e0e7cf15cee6918da.tar.zst
42-minishell-d1ee0c0e55f75432da026f5e0e7cf15cee6918da.zip
New libft function strclen, bug fix
Diffstat (limited to 'libft/Makefile')
-rw-r--r--libft/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/libft/Makefile b/libft/Makefile
index ac06d94..7b1c22c 100644
--- a/libft/Makefile
+++ b/libft/Makefile
@@ -24,6 +24,8 @@ SRCS_NAME += ft_memchr.c
SRCS_NAME += ft_memlchr.c
SRCS_NAME += ft_memcmp.c
SRCS_NAME += ft_strlen.c
+SRCS_NAME += ft_strclen.c
+SRCS_NAME += ft_strnlen.c
SRCS_NAME += ft_isalpha.c
SRCS_NAME += ft_isdigit.c
SRCS_NAME += ft_isalnum.c
@@ -71,7 +73,6 @@ SRCS_NAME += ft_putstr.c
SRCS_NAME += ft_putendl.c
SRCS_NAME += ft_putnbr.c
SRCS_NAME += ft_putnbr_base.c
-SRCS_NAME += ft_strnlen.c
SRCS_NAME += ft_strcat.c
SRCS_NAME += ft_strcmp.c
SRCS_NAME += ft_isspace.c