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_strncmp.c | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) (limited to 'ft_strncmp.c') diff --git a/ft_strncmp.c b/ft_strncmp.c index 0f24a1e..7246d5b 100644 --- a/ft_strncmp.c +++ b/ft_strncmp.c @@ -1,8 +1,20 @@ +/* ************************************************************************** */ +/* */ +/* ::: :::::::: */ +/* ft_strncmp.c :+: :+: :+: */ +/* +:+ +:+ +:+ */ +/* By: cacharle +#+ +:+ +#+ */ +/* +#+#+#+#+#+ +#+ */ +/* Created: 2019/10/07 10:27:34 by cacharle #+# #+# */ +/* Updated: 2019/10/07 10:27:59 by cacharle ### ########.fr */ +/* */ +/* ************************************************************************** */ + #include -int ft_strncmp(const char *s1, const char *s2, size_t n) +int ft_strncmp(const char *s1, const char *s2, size_t n) { - size_t i; + size_t i; if (n == 0) return (0); -- cgit