From 95ccc46ad62c59e648679acad8b44ba5d4465e3d Mon Sep 17 00:00:00 2001 From: Dominik Kaiser Date: Wed, 8 May 2024 13:14:19 +0200 Subject: Add libft as dir --- libft/ft_memcmp.c | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 libft/ft_memcmp.c (limited to 'libft/ft_memcmp.c') diff --git a/libft/ft_memcmp.c b/libft/ft_memcmp.c new file mode 100644 index 0000000..0bd52df --- /dev/null +++ b/libft/ft_memcmp.c @@ -0,0 +1,39 @@ +/* ************************************************************************** */ +/* */ +/* ::: :::::::: */ +/* ft_memcmp.c :+: :+: :+: */ +/* +:+ +:+ +:+ */ +/* By: dkaiser */ + +/* int main(void) */ +/* { */ +/* char str1[] = "Hello"; */ +/* char str2[] = "Hellu"; */ + +/* printf("memcmp: %d\n", memcmp(str1, str2, 5)); */ +/* printf("ft_memcmp: %d\n", ft_memcmp(str1, str2, 5)); */ +/* } */ -- cgit v1.2.3