diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2020-08-04 14:28:35 +0200 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2020-08-04 14:28:35 +0200 |
commit | d1ee0c0e55f75432da026f5e0e7cf15cee6918da (patch) | |
tree | f0ba3ebf5f6ba8d2ce093938f36602d64e7b43ff /libft/Makefile | |
parent | Unset is fine (diff) | |
download | 42-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/Makefile | 3 |
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 |