aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorCharles <sircharlesaze@gmail.com>2019-11-21 02:53:41 +0100
committerCharles <sircharlesaze@gmail.com>2019-11-21 04:03:13 +0100
commitee4b8e5e481850c936c5df10a0d3e70038234754 (patch)
tree5e569b3ebc2bdcafdbd06fef99f32207da29d4ee /Makefile
parentafc8c70a66773563f6e7429b500abcbab631722b (diff)
downloadlibft-ee4b8e5e481850c936c5df10a0d3e70038234754.tar.gz
libft-ee4b8e5e481850c936c5df10a0d3e70038234754.tar.bz2
libft-ee4b8e5e481850c936c5df10a0d3e70038234754.zip
WIP: adding ft_*printf
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 3360001..152e843 100644
--- a/Makefile
+++ b/Makefile
@@ -6,7 +6,7 @@
# By: cacharle <marvin@42.fr> +#+ +:+ +#+ #
# +#+#+#+#+#+ +#+ #
# Created: 2019/10/08 15:45:53 by cacharle #+# #+# #
-# Updated: 2019/11/20 04:13:32 by cacharle ### ########.fr #
+# Updated: 2019/11/21 03:43:46 by cacharle ### ########.fr #
# #
# **************************************************************************** #
@@ -28,7 +28,9 @@ SRC = ft_atoi.c ft_bzero.c ft_isalnum.c ft_isalpha.c ft_isascii.c ft_isdigit.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_strndup.c \
- ft_strjoin_free.c ft_strjoin_free_snd.c get_next_line.c ft_strcount.c
+ ft_strjoin_free.c ft_strjoin_free_snd.c get_next_line.c ft_strcount.c \
+ ft_printf.c ft_sprintf.c ft_snprintf.c ft_asprintf.c ft_dprintf.c \
+ ft_vprintf.c ft_vsprintf.c ft_vsnprintf.c ft_vasprintf.c ft_vdprintf.c
OBJ = $(SRC:.c=.o)
INCLUDE = libft.h