From 10b4feb67c8af2b099dabd66f948b02e180bae0d Mon Sep 17 00:00:00 2001 From: Cabergs Charles Date: Mon, 7 Oct 2019 11:35:51 +0200 Subject: Normed everything Created a few dummy functions to resolve functions having more than 25 lines. --- ft_strnequ.c | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) (limited to 'ft_strnequ.c') diff --git a/ft_strnequ.c b/ft_strnequ.c index 6eb58bf..34d0627 100644 --- a/ft_strnequ.c +++ b/ft_strnequ.c @@ -1,6 +1,18 @@ +/* ************************************************************************** */ +/* */ +/* ::: :::::::: */ +/* ft_strnequ.c :+: :+: :+: */ +/* +:+ +:+ +:+ */ +/* By: cacharle +#+ +:+ +#+ */ +/* +#+#+#+#+#+ +#+ */ +/* Created: 2019/10/07 10:30:27 by cacharle #+# #+# */ +/* Updated: 2019/10/07 10:30:33 by cacharle ### ########.fr */ +/* */ +/* ************************************************************************** */ + #include "libft.h" -int ft_strnequ(char const *s1, char const *s2, size_t n) +int ft_strnequ(char const *s1, char const *s2, size_t n) { - return (ft_strncmp(s1, s2, n) == 0); + return (ft_strncmp(s1, s2, n) == 0); } -- cgit