ft_strlen: initial implementation
also create libft.h
This commit is contained in:
parent
3001be14f1
commit
66f4981649
3 changed files with 52 additions and 2 deletions
5
Makefile
5
Makefile
|
|
@ -6,7 +6,7 @@
|
|||
# By: kcolin <marvin@42.fr> +#+ +:+ +#+ #
|
||||
# +#+#+#+#+#+ +#+ #
|
||||
# Created: 2024/10/14 13:43:59 by kcolin #+# #+# #
|
||||
# Updated: 2024/10/14 15:02:59 by kcolin ### ########.fr #
|
||||
# Updated: 2024/10/14 15:11:56 by kcolin ### ########.fr #
|
||||
# #
|
||||
# **************************************************************************** #
|
||||
|
||||
|
|
@ -16,7 +16,8 @@ SOURCES = ft_isalpha.c \
|
|||
ft_isdigit.c \
|
||||
ft_isalnum.c \
|
||||
ft_isascii.c \
|
||||
ft_isprint.c
|
||||
ft_isprint.c \
|
||||
ft_strlen.c
|
||||
OBJECTS = $(SOURCES:.c=.o)
|
||||
CC = gcc
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue