diff options
| author | Charles <sircharlesaze@gmail.com> | 2020-01-15 11:40:48 +0100 |
|---|---|---|
| committer | Charles <sircharlesaze@gmail.com> | 2020-02-04 04:09:19 +0100 |
| commit | 014d876b691b5c0e84faa98bd308a855269e4ae4 (patch) | |
| tree | 8c26213ab8426f906fa143f904ab0f6a39e22013 /Makefile | |
| parent | 435fec311c0c5173ae99c32b8f4e6431bd1e43d2 (diff) | |
| download | libft-014d876b691b5c0e84faa98bd308a855269e4ae4.tar.gz libft-014d876b691b5c0e84faa98bd308a855269e4ae4.tar.bz2 libft-014d876b691b5c0e84faa98bd308a855269e4ae4.zip | |
Added ft_strtol, ft_isspace, ft_todigit, ft_strict_atoi, modified ft_atoi to use ft_strtol
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -6,7 +6,7 @@ # By: cacharle <marvin@42.fr> +#+ +:+ +#+ # # +#+#+#+#+#+ +#+ # # Created: 2019/10/08 15:45:53 by cacharle #+# #+# # -# Updated: 2020/02/04 03:32:29 by cacharle ### ########.fr # +# Updated: 2020/02/04 04:08:01 by cacharle ### ########.fr # # # # **************************************************************************** # @@ -28,7 +28,7 @@ SRC = ft_atoi.c ft_bzero.c ft_isalnum.c ft_isalpha.c ft_isascii.c ft_isdigit.c f ft_strncat.c ft_strncmp.c ft_strncpy.c ft_strnequ.c ft_strnew.c ft_strnstr.c \ ft_strrchr.c ft_split.c ft_strstr.c ft_substr.c ft_strtrim.c ft_tolower.c \ ft_toupper.c ft_strlcpy.c ft_calloc.c ft_strcount.c ft_memswap.c ft_qsort.c \ - ft_abs.c + ft_abs.c ft_strtol.c ft_isspace.c OBJ = $(SRC:.c=.o) INCLUDE = libft.h |
