ft_isdigit

This commit is contained in:
Tanguy MAZE
2018-04-04 11:50:38 +02:00
parent a7d5f22b0a
commit 030af8d89e
2 changed files with 21 additions and 2 deletions

View File

@@ -6,7 +6,7 @@
# By: tmaze <marvin@42.fr> +#+ +:+ +#+ #
# +#+#+#+#+#+ +#+ #
# Created: 2018/04/04 10:51:59 by tmaze #+# #+# #
# Updated: 2018/04/04 10:56:20 by tmaze ### ########.fr #
# Updated: 2018/04/04 11:34:29 by tmaze ### ########.fr #
# #
#******************************************************************************#
@@ -16,7 +16,8 @@ CCSTD = -std=c99
NAME = libft.a
SRCS = ft_isalpha.c
SRCS = ft_isalpha.c \
ft_isdigit.c
OBJS = $(SRCS:.c=.o)
INCLS = -I.