ft_atoi: initial implementation
This commit is contained in:
parent
0a1e2f2b37
commit
fce032ce2f
3 changed files with 51 additions and 3 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/16 15:38:09 by kcolin ### ########.fr #
|
||||
# Updated: 2024/10/16 16:02:21 by kcolin ### ########.fr #
|
||||
# #
|
||||
# **************************************************************************** #
|
||||
|
||||
|
|
@ -31,7 +31,8 @@ SOURCES = ft_isalpha.c \
|
|||
ft_strncmp.c \
|
||||
ft_memchr.c \
|
||||
ft_memcmp.c \
|
||||
ft_strnstr.c
|
||||
ft_strnstr.c \
|
||||
ft_atoi.c
|
||||
OBJECTS = $(SOURCES:.c=.o)
|
||||
CC = gcc
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue