diff options
Diffstat (limited to 'libft')
93 files changed, 277 insertions, 276 deletions
diff --git a/libft/Makefile b/libft/Makefile index 8ad24a7..8d4703d 100644 --- a/libft/Makefile +++ b/libft/Makefile @@ -128,6 +128,7 @@ CFLAGS += -Wall CFLAGS += -Wextra CFLAGS += -Werror CFLAGS += -pedantic +CFLAGS += -march=native -O2 -pipe ifdef DEBUG CFLAGS += ${DBG} endif diff --git a/libft/inc/libft.h b/libft/inc/libft.h index 843e97c..1066619 100644 --- a/libft/inc/libft.h +++ b/libft/inc/libft.h @@ -3,10 +3,10 @@ /* ::: :::::::: */ /* libft.h :+: :+: :+: */ /* +:+ +:+ +:+ */ -/* By: rbousset <marvin@42.fr> +#+ +:+ +#+ */ +/* By: joelecle <marvin@42.fr> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ -/* Created: 2020/02/14 17:19:27 by rbousset #+# #+# */ -/* Updated: 2020/02/14 17:19:29 by rbousset ### ########lyon.fr */ +/* Created: 2020/02/14 17:19:27 by joelecle #+# #+# */ +/* Updated: 2020/02/14 17:19:29 by joelecle ### ########lyon.fr */ /* */ /* ************************************************************************** */ diff --git a/libft/src/ft_atoi.c b/libft/src/ft_atoi.c index 7a97eae..f73e022 100644 --- a/libft/src/ft_atoi.c +++ b/libft/src/ft_atoi.c @@ -3,10 +3,10 @@ /* ::: :::::::: */ /* ft_atoi.c :+: :+: :+: */ /* +:+ +:+ +:+ */ -/* By: rbousset <marvin@42.fr> +#+ +:+ +#+ */ +/* By: joelecle <marvin@42.fr> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ -/* Created: 2020/02/14 17:06:22 by rbousset #+# #+# */ -/* Updated: 2020/02/14 17:07:24 by rbousset ### ########lyon.fr */ +/* Created: 2020/02/14 17:06:22 by joelecle #+# #+# */ +/* Updated: 2020/02/14 17:07:24 by joelecle ### ########lyon.fr */ /* */ /* ************************************************************************** */ diff --git a/libft/src/ft_bzero.c b/libft/src/ft_bzero.c index bec9e50..e5710da 100644 --- a/libft/src/ft_bzero.c +++ b/libft/src/ft_bzero.c @@ -3,10 +3,10 @@ /* ::: :::::::: */ /* ft_bzero.c :+: :+: :+: */ /* +:+ +:+ +:+ */ -/* By: rbousset <marvin@42.fr> +#+ +:+ +#+ */ +/* By: joelecle <marvin@42.fr> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ -/* Created: 2020/02/14 17:06:31 by rbousset #+# #+# */ -/* Updated: 2020/02/14 17:06:31 by rbousset ### ########lyon.fr */ +/* Created: 2020/02/14 17:06:31 by joelecle #+# #+# */ +/* Updated: 2020/02/14 17:06:31 by joelecle ### ########lyon.fr */ /* */ /* ************************************************************************** */ diff --git a/libft/src/ft_calloc.c b/libft/src/ft_calloc.c index 88c5457..095b40b 100644 --- a/libft/src/ft_calloc.c +++ b/libft/src/ft_calloc.c @@ -3,10 +3,10 @@ /* ::: :::::::: */ /* ft_calloc.c :+: :+: :+: */ /* +:+ +:+ +:+ */ -/* By: rbousset <marvin@42.fr> +#+ +:+ +#+ */ +/* By: joelecle <marvin@42.fr> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ -/* Created: 2020/02/14 17:06:32 by rbousset #+# #+# */ -/* Updated: 2020/02/14 17:06:32 by rbousset ### ########lyon.fr */ +/* Created: 2020/02/14 17:06:32 by joelecle #+# #+# */ +/* Updated: 2020/02/14 17:06:32 by joelecle ### ########lyon.fr */ /* */ /* ************************************************************************** */ diff --git a/libft/src/ft_dprintf.c b/libft/src/ft_dprintf.c index caa28dc..7cba8fd 100644 --- a/libft/src/ft_dprintf.c +++ b/libft/src/ft_dprintf.c @@ -3,10 +3,10 @@ /* ::: :::::::: */ /* ft_dprintf.c :+: :+: :+: */ /* +:+ +:+ +:+ */ -/* By: rbousset <marvin@42.fr> +#+ +:+ +#+ */ +/* By: joelecle <marvin@42.fr> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ -/* Created: 2020/02/14 17:06:39 by rbousset #+# #+# */ -/* Updated: 2020/02/14 17:06:39 by rbousset ### ########lyon.fr */ +/* Created: 2020/02/14 17:06:39 by joelecle #+# #+# */ +/* Updated: 2020/02/14 17:06:39 by joelecle ### ########lyon.fr */ /* */ /* ************************************************************************** */ diff --git a/libft/src/ft_intlen.c b/libft/src/ft_intlen.c index c122657..3fb176b 100644 --- a/libft/src/ft_intlen.c +++ b/libft/src/ft_intlen.c @@ -3,10 +3,10 @@ /* ::: :::::::: */ /* ft_intlen.c :+: :+: :+: */ /* +:+ +:+ +:+ */ -/* By: rbousset <marvin@42.fr> +#+ +:+ +#+ */ +/* By: joelecle <marvin@42.fr> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ -/* Created: 2020/02/14 17:06:39 by rbousset #+# #+# */ -/* Updated: 2020/02/14 17:06:39 by rbousset ### ########lyon.fr */ +/* Created: 2020/02/14 17:06:39 by joelecle #+# #+# */ +/* Updated: 2020/02/14 17:06:39 by joelecle ### ########lyon.fr */ /* */ /* ************************************************************************** */ diff --git a/libft/src/ft_intlen_base.c b/libft/src/ft_intlen_base.c index 47da31d..c43c096 100644 --- a/libft/src/ft_intlen_base.c +++ b/libft/src/ft_intlen_base.c @@ -3,10 +3,10 @@ /* ::: :::::::: */ /* ft_intlen_base.c :+: :+: :+: */ /* +:+ +:+ +:+ */ -/* By: rbousset <marvin@42.fr> +#+ +:+ +#+ */ +/* By: joelecle <marvin@42.fr> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ -/* Created: 2020/02/14 17:06:39 by rbousset #+# #+# */ -/* Updated: 2020/02/14 17:06:39 by rbousset ### ########lyon.fr */ +/* Created: 2020/02/14 17:06:39 by joelecle #+# #+# */ +/* Updated: 2020/02/14 17:06:39 by joelecle ### ########lyon.fr */ /* */ /* ************************************************************************** */ diff --git a/libft/src/ft_isalnum.c b/libft/src/ft_isalnum.c index e764ac6..05848a2 100644 --- a/libft/src/ft_isalnum.c +++ b/libft/src/ft_isalnum.c @@ -3,10 +3,10 @@ /* ::: :::::::: */ /* ft_isalnum.c :+: :+: :+: */ /* +:+ +:+ +:+ */ -/* By: rbousset <marvin@42.fr> +#+ +:+ +#+ */ +/* By: joelecle <marvin@42.fr> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ -/* Created: 2020/02/14 17:06:39 by rbousset #+# #+# */ -/* Updated: 2020/02/14 17:06:39 by rbousset ### ########lyon.fr */ +/* Created: 2020/02/14 17:06:39 by joelecle #+# #+# */ +/* Updated: 2020/02/14 17:06:39 by joelecle ### ########lyon.fr */ /* */ /* ************************************************************************** */ diff --git a/libft/src/ft_isalpha.c b/libft/src/ft_isalpha.c index 562825d..55f3e63 100644 --- a/libft/src/ft_isalpha.c +++ b/libft/src/ft_isalpha.c @@ -3,10 +3,10 @@ /* ::: :::::::: */ /* ft_isalpha.c :+: :+: :+: */ /* +:+ +:+ +:+ */ -/* By: rbousset <marvin@42.fr> +#+ +:+ +#+ */ +/* By: joelecle <marvin@42.fr> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ -/* Created: 2020/02/14 17:06:39 by rbousset #+# #+# */ -/* Updated: 2020/02/14 17:06:39 by rbousset ### ########lyon.fr */ +/* Created: 2020/02/14 17:06:39 by joelecle #+# #+# */ +/* Updated: 2020/02/14 17:06:39 by joelecle ### ########lyon.fr */ /* */ /* ************************************************************************** */ diff --git a/libft/src/ft_isascii.c b/libft/src/ft_isascii.c index 8d2f3f2..6c7c3e6 100644 --- a/libft/src/ft_isascii.c +++ b/libft/src/ft_isascii.c @@ -3,10 +3,10 @@ /* ::: :::::::: */ /* ft_isascii.c :+: :+: :+: */ /* +:+ +:+ +:+ */ -/* By: rbousset <marvin@42.fr> +#+ +:+ +#+ */ +/* By: joelecle <marvin@42.fr> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ -/* Created: 2020/02/14 17:06:39 by rbousset #+# #+# */ -/* Updated: 2020/02/14 17:06:39 by rbousset ### ########lyon.fr */ +/* Created: 2020/02/14 17:06:39 by joelecle #+# #+# */ +/* Updated: 2020/02/14 17:06:39 by joelecle ### ########lyon.fr */ /* */ /* ************************************************************************** */ diff --git a/libft/src/ft_ischarset.c b/libft/src/ft_ischarset.c index 95b9172..9977bb7 100644 --- a/libft/src/ft_ischarset.c +++ b/libft/src/ft_ischarset.c @@ -3,10 +3,10 @@ /* ::: :::::::: */ /* ft_ischarset.c :+: :+: :+: */ /* +:+ +:+ +:+ */ -/* By: rbousset <marvin@42.fr> +#+ +:+ +#+ */ +/* By: joelecle <marvin@42.fr> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ -/* Created: 2020/02/14 17:06:39 by rbousset #+# #+# */ -/* Updated: 2020/02/14 17:06:39 by rbousset ### ########lyon.fr */ +/* Created: 2020/02/14 17:06:39 by joelecle #+# #+# */ +/* Updated: 2020/02/14 17:06:39 by joelecle ### ########lyon.fr */ /* */ /* ************************************************************************** */ diff --git a/libft/src/ft_isdigit.c b/libft/src/ft_isdigit.c index ebe1f40..60aa8ed 100644 --- a/libft/src/ft_isdigit.c +++ b/libft/src/ft_isdigit.c @@ -3,10 +3,10 @@ /* ::: :::::::: */ /* ft_isdigit.c :+: :+: :+: */ /* +:+ +:+ +:+ */ -/* By: rbousset <marvin@42.fr> +#+ +:+ +#+ */ +/* By: joelecle <marvin@42.fr> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ -/* Created: 2020/02/14 17:06:39 by rbousset #+# #+# */ -/* Updated: 2020/02/14 17:06:39 by rbousset ### ########lyon.fr */ +/* Created: 2020/02/14 17:06:39 by joelecle #+# #+# */ +/* Updated: 2020/02/14 17:06:39 by joelecle ### ########lyon.fr */ /* */ /* ************************************************************************** */ diff --git a/libft/src/ft_isprint.c b/libft/src/ft_isprint.c index 12fdb7a..53ac26c 100644 --- a/libft/src/ft_isprint.c +++ b/libft/src/ft_isprint.c @@ -3,10 +3,10 @@ /* ::: :::::::: */ /* ft_isprint.c :+: :+: :+: */ /* +:+ +:+ +:+ */ -/* By: rbousset <marvin@42.fr> +#+ +:+ +#+ */ +/* By: joelecle <marvin@42.fr> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ -/* Created: 2020/02/14 17:06:40 by rbousset #+# #+# */ -/* Updated: 2020/02/14 17:06:40 by rbousset ### ########lyon.fr */ +/* Created: 2020/02/14 17:06:40 by joelecle #+# #+# */ +/* Updated: 2020/02/14 17:06:40 by joelecle ### ########lyon.fr */ /* */ /* ************************************************************************** */ diff --git a/libft/src/ft_isspace.c b/libft/src/ft_isspace.c index 188e94a..4fa0569 100644 --- a/libft/src/ft_isspace.c +++ b/libft/src/ft_isspace.c @@ -3,10 +3,10 @@ /* ::: :::::::: */ /* ft_isspace.c :+: :+: :+: */ /* +:+ +:+ +:+ */ -/* By: rbousset <marvin@42.fr> +#+ +:+ +#+ */ +/* By: joelecle <marvin@42.fr> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ -/* Created: 2020/02/14 17:06:40 by rbousset #+# #+# */ -/* Updated: 2020/02/14 17:06:40 by rbousset ### ########lyon.fr */ +/* Created: 2020/02/14 17:06:40 by joelecle #+# #+# */ +/* Updated: 2020/02/14 17:06:40 by joelecle ### ########lyon.fr */ /* */ /* ************************************************************************** */ diff --git a/libft/src/ft_itoa.c b/libft/src/ft_itoa.c index e10fbab..78ba65b 100644 --- a/libft/src/ft_itoa.c +++ b/libft/src/ft_itoa.c @@ -3,10 +3,10 @@ /* ::: :::::::: */ /* ft_itoa.c :+: :+: :+: */ /* +:+ +:+ +:+ */ -/* By: rbousset <marvin@42.fr> +#+ +:+ +#+ */ +/* By: joelecle <marvin@42.fr> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ -/* Created: 2020/02/14 17:06:40 by rbousset #+# #+# */ -/* Updated: 2020/02/14 17:06:40 by rbousset ### ########lyon.fr */ +/* Created: 2020/02/14 17:06:40 by joelecle #+# #+# */ +/* Updated: 2020/02/14 17:06:40 by joelecle ### ########lyon.fr */ /* */ /* ************************************************************************** */ diff --git a/libft/src/ft_itoa_base.c b/libft/src/ft_itoa_base.c index f3abe46..628cb01 100644 --- a/libft/src/ft_itoa_base.c +++ b/libft/src/ft_itoa_base.c @@ -3,10 +3,10 @@ /* ::: :::::::: */ /* ft_itoa_base.c :+: :+: :+: */ /* +:+ +:+ +:+ */ -/* By: rbousset <marvin@42.fr> +#+ +:+ +#+ */ +/* By: joelecle <marvin@42.fr> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ -/* Created: 2020/02/14 17:06:40 by rbousset #+# #+# */ -/* Updated: 2020/02/14 17:06:40 by rbousset ### ########lyon.fr */ +/* Created: 2020/02/14 17:06:40 by joelecle #+# #+# */ +/* Updated: 2020/02/14 17:06:40 by joelecle ### ########lyon.fr */ /* */ /* ************************************************************************** */ diff --git a/libft/src/ft_kernel_panic.c b/libft/src/ft_kernel_panic.c index 437a79a..c621777 100644 --- a/libft/src/ft_kernel_panic.c +++ b/libft/src/ft_kernel_panic.c @@ -3,10 +3,10 @@ /* ::: :::::::: */ /* ft_kernel_panic.c :+: :+: :+: */ /* +:+ +:+ +:+ */ -/* By: rbousset <marvin@42.fr> +#+ +:+ +#+ */ +/* By: joelecle <marvin@42.fr> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ -/* Created: 2020/02/14 17:06:40 by rbousset #+# #+# */ -/* Updated: 2020/02/14 17:06:40 by rbousset ### ########lyon.fr */ +/* Created: 2020/02/14 17:06:40 by joelecle #+# #+# */ +/* Updated: 2020/02/14 17:06:40 by joelecle ### ########lyon.fr */ /* */ /* ************************************************************************** */ diff --git a/libft/src/ft_lstadd_back.c b/libft/src/ft_lstadd_back.c index 3f031ab..3d607d6 100644 --- a/libft/src/ft_lstadd_back.c +++ b/libft/src/ft_lstadd_back.c @@ -3,10 +3,10 @@ /* ::: :::::::: */ /* ft_lstadd_back.c :+: :+: :+: */ /* +:+ +:+ +:+ */ -/* By: rbousset <marvin@42.fr> +#+ +:+ +#+ */ +/* By: joelecle <marvin@42.fr> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ -/* Created: 2020/02/14 17:06:40 by rbousset #+# #+# */ -/* Updated: 2020/02/14 17:06:40 by rbousset ### ########lyon.fr */ +/* Created: 2020/02/14 17:06:40 by joelecle #+# #+# */ +/* Updated: 2020/02/14 17:06:40 by joelecle ### ########lyon.fr */ /* */ /* ************************************************************************** */ diff --git a/libft/src/ft_lstadd_front.c b/libft/src/ft_lstadd_front.c index fac38cc..82f53d1 100644 --- a/libft/src/ft_lstadd_front.c +++ b/libft/src/ft_lstadd_front.c @@ -3,10 +3,10 @@ /* ::: :::::::: */ /* ft_lstadd_front.c :+: :+: :+: */ /* +:+ +:+ +:+ */ -/* By: rbousset <marvin@42.fr> +#+ +:+ +#+ */ +/* By: joelecle <marvin@42.fr> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ -/* Created: 2020/02/14 17:06:40 by rbousset #+# #+# */ -/* Updated: 2020/02/14 17:06:40 by rbousset ### ########lyon.fr */ +/* Created: 2020/02/14 17:06:40 by joelecle #+# #+# */ +/* Updated: 2020/02/14 17:06:40 by joelecle ### ########lyon.fr */ /* */ /* ************************************************************************** */ diff --git a/libft/src/ft_lstclear.c b/libft/src/ft_lstclear.c index 10a6d91..2416d31 100644 --- a/libft/src/ft_lstclear.c +++ b/libft/src/ft_lstclear.c @@ -3,10 +3,10 @@ /* ::: :::::::: */ /* ft_lstclear.c :+: :+: :+: */ /* +:+ +:+ +:+ */ -/* By: rbousset <marvin@42.fr> +#+ +:+ +#+ */ +/* By: joelecle <marvin@42.fr> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ -/* Created: 2020/02/14 17:06:41 by rbousset #+# #+# */ -/* Updated: 2020/02/14 17:06:41 by rbousset ### ########lyon.fr */ +/* Created: 2020/02/14 17:06:41 by joelecle #+# #+# */ +/* Updated: 2020/02/14 17:06:41 by joelecle ### ########lyon.fr */ /* */ /* ************************************************************************** */ diff --git a/libft/src/ft_lstdelone.c b/libft/src/ft_lstdelone.c index 3653e70..2514d57 100644 --- a/libft/src/ft_lstdelone.c +++ b/libft/src/ft_lstdelone.c @@ -3,10 +3,10 @@ /* ::: :::::::: */ /* ft_lstdelone.c :+: :+: :+: */ /* +:+ +:+ +:+ */ -/* By: rbousset <marvin@42.fr> +#+ +:+ +#+ */ +/* By: joelecle <marvin@42.fr> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ -/* Created: 2020/02/14 17:06:41 by rbousset #+# #+# */ -/* Updated: 2020/02/14 17:06:41 by rbousset ### ########lyon.fr */ +/* Created: 2020/02/14 17:06:41 by joelecle #+# #+# */ +/* Updated: 2020/02/14 17:06:41 by joelecle ### ########lyon.fr */ /* */ /* ************************************************************************** */ diff --git a/libft/src/ft_lstiter.c b/libft/src/ft_lstiter.c index 72810c9..3baf9e4 100644 --- a/libft/src/ft_lstiter.c +++ b/libft/src/ft_lstiter.c @@ -3,10 +3,10 @@ /* ::: :::::::: */ /* ft_lstiter.c :+: :+: :+: */ /* +:+ +:+ +:+ */ -/* By: rbousset <marvin@42.fr> +#+ +:+ +#+ */ +/* By: joelecle <marvin@42.fr> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ -/* Created: 2020/02/14 17:06:41 by rbousset #+# #+# */ -/* Updated: 2020/02/14 17:06:41 by rbousset ### ########lyon.fr */ +/* Created: 2020/02/14 17:06:41 by joelecle #+# #+# */ +/* Updated: 2020/02/14 17:06:41 by joelecle ### ########lyon.fr */ /* */ /* ************************************************************************** */ diff --git a/libft/src/ft_lstlast.c b/libft/src/ft_lstlast.c index 85a708b..92890be 100644 --- a/libft/src/ft_lstlast.c +++ b/libft/src/ft_lstlast.c @@ -3,10 +3,10 @@ /* ::: :::::::: */ /* ft_lstlast.c :+: :+: :+: */ /* +:+ +:+ +:+ */ -/* By: rbousset <marvin@42.fr> +#+ +:+ +#+ */ +/* By: joelecle <marvin@42.fr> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ -/* Created: 2020/02/14 17:06:41 by rbousset #+# #+# */ -/* Updated: 2020/02/14 17:06:41 by rbousset ### ########lyon.fr */ +/* Created: 2020/02/14 17:06:41 by joelecle #+# #+# */ +/* Updated: 2020/02/14 17:06:41 by joelecle ### ########lyon.fr */ /* */ /* ************************************************************************** */ diff --git a/libft/src/ft_lstmap.c b/libft/src/ft_lstmap.c index b489527..a1361aa 100644 --- a/libft/src/ft_lstmap.c +++ b/libft/src/ft_lstmap.c @@ -3,10 +3,10 @@ /* ::: :::::::: */ /* ft_lstmap.c :+: :+: :+: */ /* +:+ +:+ +:+ */ -/* By: rbousset <marvin@42.fr> +#+ +:+ +#+ */ +/* By: joelecle <marvin@42.fr> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ -/* Created: 2020/02/14 17:06:41 by rbousset #+# #+# */ -/* Updated: 2020/02/14 17:06:41 by rbousset ### ########lyon.fr */ +/* Created: 2020/02/14 17:06:41 by joelecle #+# #+# */ +/* Updated: 2020/02/14 17:06:41 by joelecle ### ########lyon.fr */ /* */ /* ************************************************************************** */ diff --git a/libft/src/ft_lstnew.c b/libft/src/ft_lstnew.c index 9f66691..3f7569a 100644 --- a/libft/src/ft_lstnew.c +++ b/libft/src/ft_lstnew.c @@ -3,10 +3,10 @@ /* ::: :::::::: */ /* ft_lstnew.c :+: :+: :+: */ /* +:+ +:+ +:+ */ -/* By: rbousset <marvin@42.fr> +#+ +:+ +#+ */ +/* By: joelecle <marvin@42.fr> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ -/* Created: 2020/02/14 17:06:41 by rbousset #+# #+# */ -/* Updated: 2020/02/14 17:06:41 by rbousset ### ########lyon.fr */ +/* Created: 2020/02/14 17:06:41 by joelecle #+# #+# */ +/* Updated: 2020/02/14 17:06:41 by joelecle ### ########lyon.fr */ /* */ /* ************************************************************************** */ diff --git a/libft/src/ft_lstsize.c b/libft/src/ft_lstsize.c index 7134a9f..c947b2c 100644 --- a/libft/src/ft_lstsize.c +++ b/libft/src/ft_lstsize.c @@ -3,10 +3,10 @@ /* ::: :::::::: */ /* ft_lstsize.c :+: :+: :+: */ /* +:+ +:+ +:+ */ -/* By: rbousset <marvin@42.fr> +#+ +:+ +#+ */ +/* By: joelecle <marvin@42.fr> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ -/* Created: 2020/02/14 17:06:41 by rbousset #+# #+# */ -/* Updated: 2020/02/14 17:06:41 by rbousset ### ########lyon.fr */ +/* Created: 2020/02/14 17:06:41 by joelecle #+# #+# */ +/* Updated: 2020/02/14 17:06:41 by joelecle ### ########lyon.fr */ /* */ /* ************************************************************************** */ diff --git a/libft/src/ft_memccpy.c b/libft/src/ft_memccpy.c index 70f8226..275a797 100644 --- a/libft/src/ft_memccpy.c +++ b/libft/src/ft_memccpy.c @@ -3,10 +3,10 @@ /* ::: :::::::: */ /* ft_memccpy.c :+: :+: :+: */ /* +:+ +:+ +:+ */ -/* By: rbousset <marvin@42.fr> +#+ +:+ +#+ */ +/* By: joelecle <marvin@42.fr> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ -/* Created: 2020/02/14 17:06:41 by rbousset #+# #+# */ -/* Updated: 2020/02/14 17:06:41 by rbousset ### ########lyon.fr */ +/* Created: 2020/02/14 17:06:41 by joelecle #+# #+# */ +/* Updated: 2020/02/14 17:06:41 by joelecle ### ########lyon.fr */ /* */ /* ************************************************************************** */ diff --git a/libft/src/ft_memchr.c b/libft/src/ft_memchr.c index 8917427..91c6a15 100644 --- a/libft/src/ft_memchr.c +++ b/libft/src/ft_memchr.c @@ -3,10 +3,10 @@ /* ::: :::::::: */ /* ft_memchr.c :+: :+: :+: */ /* +:+ +:+ +:+ */ -/* By: rbousset <marvin@42.fr> +#+ +:+ +#+ */ +/* By: joelecle <marvin@42.fr> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ -/* Created: 2020/02/14 17:06:42 by rbousset #+# #+# */ -/* Updated: 2020/02/14 17:06:42 by rbousset ### ########lyon.fr */ +/* Created: 2020/02/14 17:06:42 by joelecle #+# #+# */ +/* Updated: 2020/02/14 17:06:42 by joelecle ### ########lyon.fr */ /* */ /* ************************************************************************** */ diff --git a/libft/src/ft_memcmp.c b/libft/src/ft_memcmp.c index 39fbdf6..cb65f72 100644 --- a/libft/src/ft_memcmp.c +++ b/libft/src/ft_memcmp.c @@ -3,10 +3,10 @@ /* ::: :::::::: */ /* ft_memcmp.c :+: :+: :+: */ /* +:+ +:+ +:+ */ -/* By: rbousset <marvin@42.fr> +#+ +:+ +#+ */ +/* By: joelecle <marvin@42.fr> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ -/* Created: 2020/02/14 17:06:42 by rbousset #+# #+# */ -/* Updated: 2020/02/14 17:06:42 by rbousset ### ########lyon.fr */ +/* Created: 2020/02/14 17:06:42 by joelecle #+# #+# */ +/* Updated: 2020/02/14 17:06:42 by joelecle ### ########lyon.fr */ /* */ /* ************************************************************************** */ diff --git a/libft/src/ft_memcpy.c b/libft/src/ft_memcpy.c index 1357f2e..75d3de0 100644 --- a/libft/src/ft_memcpy.c +++ b/libft/src/ft_memcpy.c @@ -3,10 +3,10 @@ /* ::: :::::::: */ /* ft_memcpy.c :+: :+: :+: */ /* +:+ +:+ +:+ */ -/* By: rbousset <marvin@42.fr> +#+ +:+ +#+ */ +/* By: joelecle <marvin@42.fr> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ -/* Created: 2020/02/14 17:06:42 by rbousset #+# #+# */ -/* Updated: 2020/02/14 17:06:42 by rbousset ### ########lyon.fr */ +/* Created: 2020/02/14 17:06:42 by joelecle #+# #+# */ +/* Updated: 2020/02/14 17:06:42 by joelecle ### ########lyon.fr */ /* */ /* ************************************************************************** */ diff --git a/libft/src/ft_memdel.c b/libft/src/ft_memdel.c index 38d6e08..03681d1 100644 --- a/libft/src/ft_memdel.c +++ b/libft/src/ft_memdel.c @@ -3,10 +3,10 @@ /* ::: :::::::: */ /* ft_memdel.c :+: :+: :+: */ /* +:+ +:+ +:+ */ -/* By: rbousset <marvin@42.fr> +#+ +:+ +#+ */ +/* By: joelecle <marvin@42.fr> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ -/* Created: 2020/02/14 17:06:42 by rbousset #+# #+# */ -/* Updated: 2020/02/14 17:06:42 by rbousset ### ########lyon.fr */ +/* Created: 2020/02/14 17:06:42 by joelecle #+# #+# */ +/* Updated: 2020/02/14 17:06:42 by joelecle ### ########lyon.fr */ /* */ /* ************************************************************************** */ diff --git a/libft/src/ft_memlchr.c b/libft/src/ft_memlchr.c index 643affc..25319bc 100644 --- a/libft/src/ft_memlchr.c +++ b/libft/src/ft_memlchr.c @@ -3,10 +3,10 @@ /* ::: :::::::: */ /* ft_memlchr.c :+: :+: :+: */ /* +:+ +:+ +:+ */ -/* By: rbousset <marvin@42.fr> +#+ +:+ +#+ */ +/* By: joelecle <marvin@42.fr> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ -/* Created: 2020/02/14 17:06:42 by rbousset #+# #+# */ -/* Updated: 2020/02/14 17:06:42 by rbousset ### ########lyon.fr */ +/* Created: 2020/02/14 17:06:42 by joelecle #+# #+# */ +/* Updated: 2020/02/14 17:06:42 by joelecle ### ########lyon.fr */ /* */ /* ************************************************************************** */ diff --git a/libft/src/ft_memmove.c b/libft/src/ft_memmove.c index 1aa3588..977cd84 100644 --- a/libft/src/ft_memmove.c +++ b/libft/src/ft_memmove.c @@ -3,10 +3,10 @@ /* ::: :::::::: */ /* ft_memmove.c :+: :+: :+: */ /* +:+ +:+ +:+ */ -/* By: rbousset <marvin@42.fr> +#+ +:+ +#+ */ +/* By: joelecle <marvin@42.fr> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ -/* Created: 2020/02/14 17:06:42 by rbousset #+# #+# */ -/* Updated: 2020/02/14 17:06:42 by rbousset ### ########lyon.fr */ +/* Created: 2020/02/14 17:06:42 by joelecle #+# #+# */ +/* Updated: 2020/02/14 17:06:42 by joelecle ### ########lyon.fr */ /* */ /* ************************************************************************** */ diff --git a/libft/src/ft_memset.c b/libft/src/ft_memset.c index e53cf38..ed9a17f 100644 --- a/libft/src/ft_memset.c +++ b/libft/src/ft_memset.c @@ -3,10 +3,10 @@ /* ::: :::::::: */ /* ft_memset.c :+: :+: :+: */ /* +:+ +:+ +:+ */ -/* By: rbousset <marvin@42.fr> +#+ +:+ +#+ */ +/* By: joelecle <marvin@42.fr> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ -/* Created: 2020/02/14 17:06:42 by rbousset #+# #+# */ -/* Updated: 2020/02/14 17:06:42 by rbousset ### ########lyon.fr */ +/* Created: 2020/02/14 17:06:42 by joelecle #+# #+# */ +/* Updated: 2020/02/14 17:06:42 by joelecle ### ########lyon.fr */ /* */ /* ************************************************************************** */ diff --git a/libft/src/ft_nrealloc.c b/libft/src/ft_nrealloc.c index ea13f19..5163354 100644 --- a/libft/src/ft_nrealloc.c +++ b/libft/src/ft_nrealloc.c @@ -3,10 +3,10 @@ /* ::: :::::::: */ /* ft_nrealloc.c :+: :+: :+: */ /* +:+ +:+ +:+ */ -/* By: rbousset <marvin@42.fr> +#+ +:+ +#+ */ +/* By: joelecle <marvin@42.fr> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ -/* Created: 2020/02/14 17:06:43 by rbousset #+# #+# */ -/* Updated: 2020/02/14 17:06:43 by rbousset ### ########lyon.fr */ +/* Created: 2020/02/14 17:06:43 by joelecle #+# #+# */ +/* Updated: 2020/02/14 17:06:43 by joelecle ### ########lyon.fr */ /* */ /* ************************************************************************** */ diff --git a/libft/src/ft_nstr.c b/libft/src/ft_nstr.c index 7b09053..2d5fc85 100644 --- a/libft/src/ft_nstr.c +++ b/libft/src/ft_nstr.c @@ -3,10 +3,10 @@ /* ::: :::::::: */ /* ft_nstr.c :+: :+: :+: */ /* +:+ +:+ +:+ */ -/* By: rbousset <marvin@42.fr> +#+ +:+ +#+ */ +/* By: joelecle <marvin@42.fr> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ -/* Created: 2020/02/14 17:06:43 by rbousset #+# #+# */ -/* Updated: 2020/02/14 17:06:43 by rbousset ### ########lyon.fr */ +/* Created: 2020/02/14 17:06:43 by joelecle #+# #+# */ +/* Updated: 2020/02/14 17:06:43 by joelecle ### ########lyon.fr */ /* */ /* ************************************************************************** */ diff --git a/libft/src/ft_printf.c b/libft/src/ft_printf.c index ec1922f..4540973 100644 --- a/libft/src/ft_printf.c +++ b/libft/src/ft_printf.c @@ -3,10 +3,10 @@ /* ::: :::::::: */ /* ft_printf.c :+: :+: :+: */ /* +:+ +:+ +:+ */ -/* By: rbousset <marvin@42.fr> +#+ +:+ +#+ */ +/* By: joelecle <marvin@42.fr> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ -/* Created: 2020/02/14 17:06:43 by rbousset #+# #+# */ -/* Updated: 2020/02/14 17:06:43 by rbousset ### ########lyon.fr */ +/* Created: 2020/02/14 17:06:43 by joelecle #+# #+# */ +/* Updated: 2020/02/14 17:06:43 by joelecle ### ########lyon.fr */ /* */ /* ************************************************************************** */ diff --git a/libft/src/ft_printf_cat_output.c b/libft/src/ft_printf_cat_output.c index f340109..b93600f 100644 --- a/libft/src/ft_printf_cat_output.c +++ b/libft/src/ft_printf_cat_output.c @@ -3,10 +3,10 @@ /* ::: :::::::: */ /* ft_printf_cat_output.c :+: :+: :+: */ /* +:+ +:+ +:+ */ -/* By: rbousset <marvin@42.fr> +#+ +:+ +#+ */ +/* By: joelecle <marvin@42.fr> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ -/* Created: 2020/02/14 17:06:43 by rbousset #+# #+# */ -/* Updated: 2020/02/14 17:06:43 by rbousset ### ########lyon.fr */ +/* Created: 2020/02/14 17:06:43 by joelecle #+# #+# */ +/* Updated: 2020/02/14 17:06:43 by joelecle ### ########lyon.fr */ /* */ /* ************************************************************************** */ diff --git a/libft/src/ft_printf_flag_to_atoi.c b/libft/src/ft_printf_flag_to_atoi.c index 2f3c6e7..7693eca 100644 --- a/libft/src/ft_printf_flag_to_atoi.c +++ b/libft/src/ft_printf_flag_to_atoi.c @@ -3,10 +3,10 @@ /* ::: :::::::: */ /* ft_printf_flag_to_atoi.c :+: :+: :+: */ /* +:+ +:+ +:+ */ -/* By: rbousset <marvin@42.fr> +#+ +:+ +#+ */ +/* By: joelecle <marvin@42.fr> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ -/* Created: 2020/02/14 17:06:43 by rbousset #+# #+# */ -/* Updated: 2020/02/14 17:06:43 by rbousset ### ########lyon.fr */ +/* Created: 2020/02/14 17:06:43 by joelecle #+# #+# */ +/* Updated: 2020/02/14 17:06:43 by joelecle ### ########lyon.fr */ /* */ /* ************************************************************************** */ diff --git a/libft/src/ft_printf_get_flags.c b/libft/src/ft_printf_get_flags.c index ca49206..10ceef9 100644 --- a/libft/src/ft_printf_get_flags.c +++ b/libft/src/ft_printf_get_flags.c @@ -3,10 +3,10 @@ /* ::: :::::::: */ /* ft_printf_get_flags.c :+: :+: :+: */ /* +:+ +:+ +:+ */ -/* By: rbousset <marvin@42.fr> +#+ +:+ +#+ */ +/* By: joelecle <marvin@42.fr> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ -/* Created: 2020/02/14 17:06:43 by rbousset #+# #+# */ -/* Updated: 2020/02/14 17:06:43 by rbousset ### ########lyon.fr */ +/* Created: 2020/02/14 17:06:43 by joelecle #+# #+# */ +/* Updated: 2020/02/14 17:06:43 by joelecle ### ########lyon.fr */ /* */ /* ************************************************************************** */ diff --git a/libft/src/ft_printf_get_s_putlen.c b/libft/src/ft_printf_get_s_putlen.c index 3f26a90..c75f04d 100644 --- a/libft/src/ft_printf_get_s_putlen.c +++ b/libft/src/ft_printf_get_s_putlen.c @@ -3,10 +3,10 @@ /* ::: :::::::: */ /* ft_printf_get_s_putlen.c :+: :+: :+: */ /* +:+ +:+ +:+ */ -/* By: rbousset <marvin@42.fr> +#+ +:+ +#+ */ +/* By: joelecle <marvin@42.fr> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ -/* Created: 2020/02/14 17:06:43 by rbousset #+# #+# */ -/* Updated: 2020/02/14 17:06:43 by rbousset ### ########lyon.fr */ +/* Created: 2020/02/14 17:06:43 by joelecle #+# #+# */ +/* Updated: 2020/02/14 17:06:43 by joelecle ### ########lyon.fr */ /* */ /* ************************************************************************** */ diff --git a/libft/src/ft_printf_get_width_nstr.c b/libft/src/ft_printf_get_width_nstr.c index 2aec3b8..bcae12c 100644 --- a/libft/src/ft_printf_get_width_nstr.c +++ b/libft/src/ft_printf_get_width_nstr.c @@ -3,10 +3,10 @@ /* ::: :::::::: */ /* ft_printf_get_width_nstr.c :+: :+: :+: */ /* +:+ +:+ +:+ */ -/* By: rbousset <marvin@42.fr> +#+ +:+ +#+ */ +/* By: joelecle <marvin@42.fr> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ -/* Created: 2020/02/14 17:06:44 by rbousset #+# #+# */ -/* Updated: 2020/02/14 17:06:44 by rbousset ### ########lyon.fr */ +/* Created: 2020/02/14 17:06:44 by joelecle #+# #+# */ +/* Updated: 2020/02/14 17:06:44 by joelecle ### ########lyon.fr */ /* */ /* ************************************************************************** */ diff --git a/libft/src/ft_printf_init_struct.c b/libft/src/ft_printf_init_struct.c index 8c65046..37e976e 100644 --- a/libft/src/ft_printf_init_struct.c +++ b/libft/src/ft_printf_init_struct.c @@ -3,10 +3,10 @@ /* ::: :::::::: */ /* ft_printf_init_struct.c :+: :+: :+: */ /* +:+ +:+ +:+ */ -/* By: rbousset <marvin@42.fr> +#+ +:+ +#+ */ +/* By: joelecle <marvin@42.fr> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ -/* Created: 2020/02/14 17:06:44 by rbousset #+# #+# */ -/* Updated: 2020/02/14 17:06:44 by rbousset ### ########lyon.fr */ +/* Created: 2020/02/14 17:06:44 by joelecle #+# #+# */ +/* Updated: 2020/02/14 17:06:44 by joelecle ### ########lyon.fr */ /* */ /* ************************************************************************** */ diff --git a/libft/src/ft_printf_parts.c b/libft/src/ft_printf_parts.c index f29d680..d27a05d 100644 --- a/libft/src/ft_printf_parts.c +++ b/libft/src/ft_printf_parts.c @@ -3,10 +3,10 @@ /* ::: :::::::: */ /* ft_printf_parts.c :+: :+: :+: */ /* +:+ +:+ +:+ */ -/* By: rbousset <marvin@42.fr> +#+ +:+ +#+ */ +/* By: joelecle <marvin@42.fr> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ -/* Created: 2020/02/14 17:06:44 by rbousset #+# #+# */ -/* Updated: 2020/02/14 17:06:44 by rbousset ### ########lyon.fr */ +/* Created: 2020/02/14 17:06:44 by joelecle #+# #+# */ +/* Updated: 2020/02/14 17:06:44 by joelecle ### ########lyon.fr */ /* */ /* ************************************************************************** */ diff --git a/libft/src/ft_printf_process.c b/libft/src/ft_printf_process.c index 92f4601..59a9b29 100644 --- a/libft/src/ft_printf_process.c +++ b/libft/src/ft_printf_process.c @@ -3,10 +3,10 @@ /* ::: :::::::: */ /* ft_printf_process.c :+: :+: :+: */ /* +:+ +:+ +:+ */ -/* By: rbousset <marvin@42.fr> +#+ +:+ +#+ */ +/* By: joelecle <marvin@42.fr> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ -/* Created: 2020/02/14 17:06:44 by rbousset #+# #+# */ -/* Updated: 2020/02/14 17:06:44 by rbousset ### ########lyon.fr */ +/* Created: 2020/02/14 17:06:44 by joelecle #+# #+# */ +/* Updated: 2020/02/14 17:06:44 by joelecle ### ########lyon.fr */ /* */ /* ************************************************************************** */ diff --git a/libft/src/ft_printf_put_char.c b/libft/src/ft_printf_put_char.c index f9cc6e5..db06532 100644 --- a/libft/src/ft_printf_put_char.c +++ b/libft/src/ft_printf_put_char.c @@ -3,10 +3,10 @@ /* ::: :::::::: */ /* ft_printf_put_char.c :+: :+: :+: */ /* +:+ +:+ +:+ */ -/* By: rbousset <marvin@42.fr> +#+ +:+ +#+ */ +/* By: joelecle <marvin@42.fr> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ -/* Created: 2020/02/14 17:06:44 by rbousset #+# #+# */ -/* Updated: 2020/02/14 17:06:44 by rbousset ### ########lyon.fr */ +/* Created: 2020/02/14 17:06:44 by joelecle #+# #+# */ +/* Updated: 2020/02/14 17:06:44 by joelecle ### ########lyon.fr */ /* */ /* ************************************************************************** */ diff --git a/libft/src/ft_printf_put_hex.c b/libft/src/ft_printf_put_hex.c index 68126a4..7f39ffa 100644 --- a/libft/src/ft_printf_put_hex.c +++ b/libft/src/ft_printf_put_hex.c @@ -3,10 +3,10 @@ /* ::: :::::::: */ /* ft_printf_put_hex.c :+: :+: :+: */ /* +:+ +:+ +:+ */ -/* By: rbousset <marvin@42.fr> +#+ +:+ +#+ */ +/* By: joelecle <marvin@42.fr> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ -/* Created: 2020/02/14 17:06:44 by rbousset #+# #+# */ -/* Updated: 2020/02/14 17:06:44 by rbousset ### ########lyon.fr */ +/* Created: 2020/02/14 17:06:44 by joelecle #+# #+# */ +/* Updated: 2020/02/14 17:06:44 by joelecle ### ########lyon.fr */ /* */ /* ************************************************************************** */ diff --git a/libft/src/ft_printf_put_int.c b/libft/src/ft_printf_put_int.c index 09b8bf6..8a85c30 100644 --- a/libft/src/ft_printf_put_int.c +++ b/libft/src/ft_printf_put_int.c @@ -3,10 +3,10 @@ /* ::: :::::::: */ /* ft_printf_put_int.c :+: :+: :+: */ /* +:+ +:+ +:+ */ -/* By: rbousset <marvin@42.fr> +#+ +:+ +#+ */ +/* By: joelecle <marvin@42.fr> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ -/* Created: 2020/02/14 17:06:44 by rbousset #+# #+# */ -/* Updated: 2020/02/14 17:06:44 by rbousset ### ########lyon.fr */ +/* Created: 2020/02/14 17:06:44 by joelecle #+# #+# */ +/* Updated: 2020/02/14 17:06:44 by joelecle ### ########lyon.fr */ /* */ /* ************************************************************************** */ diff --git a/libft/src/ft_printf_put_none.c b/libft/src/ft_printf_put_none.c index 01fd672..6b613c8 100644 --- a/libft/src/ft_printf_put_none.c +++ b/libft/src/ft_printf_put_none.c @@ -3,10 +3,10 @@ /* ::: :::::::: */ /* ft_printf_put_none.c :+: :+: :+: */ /* +:+ +:+ +:+ */ -/* By: rbousset <marvin@42.fr> +#+ +:+ +#+ */ +/* By: joelecle <marvin@42.fr> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ -/* Created: 2020/02/14 17:06:45 by rbousset #+# #+# */ -/* Updated: 2020/02/14 17:06:45 by rbousset ### ########lyon.fr */ +/* Created: 2020/02/14 17:06:45 by joelecle #+# #+# */ +/* Updated: 2020/02/14 17:06:45 by joelecle ### ########lyon.fr */ /* */ /* ************************************************************************** */ diff --git a/libft/src/ft_printf_put_precision.c b/libft/src/ft_printf_put_precision.c index af7f7b7..181f877 100644 --- a/libft/src/ft_printf_put_precision.c +++ b/libft/src/ft_printf_put_precision.c @@ -3,10 +3,10 @@ /* ::: :::::::: */ /* ft_printf_put_precision.c :+: :+: :+: */ /* +:+ +:+ +:+ */ -/* By: rbousset <marvin@42.fr> +#+ +:+ +#+ */ +/* By: joelecle <marvin@42.fr> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ -/* Created: 2020/02/14 17:06:45 by rbousset #+# #+# */ -/* Updated: 2020/02/14 17:06:45 by rbousset ### ########lyon.fr */ +/* Created: 2020/02/14 17:06:45 by joelecle #+# #+# */ +/* Updated: 2020/02/14 17:06:45 by joelecle ### ########lyon.fr */ /* */ /* ************************************************************************** */ diff --git a/libft/src/ft_printf_put_ptr.c b/libft/src/ft_printf_put_ptr.c index bd50443..75f699d 100644 --- a/libft/src/ft_printf_put_ptr.c +++ b/libft/src/ft_printf_put_ptr.c @@ -3,10 +3,10 @@ /* ::: :::::::: */ /* ft_printf_put_ptr.c :+: :+: :+: */ /* +:+ +:+ +:+ */ -/* By: rbousset <marvin@42.fr> +#+ +:+ +#+ */ +/* By: joelecle <marvin@42.fr> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ -/* Created: 2020/02/14 17:06:45 by rbousset #+# #+# */ -/* Updated: 2020/02/14 17:06:45 by rbousset ### ########lyon.fr */ +/* Created: 2020/02/14 17:06:45 by joelecle #+# #+# */ +/* Updated: 2020/02/14 17:06:45 by joelecle ### ########lyon.fr */ /* */ /* ************************************************************************** */ diff --git a/libft/src/ft_printf_put_str.c b/libft/src/ft_printf_put_str.c index 6834fff..e3324bd 100644 --- a/libft/src/ft_printf_put_str.c +++ b/libft/src/ft_printf_put_str.c @@ -3,10 +3,10 @@ /* ::: :::::::: */ /* ft_printf_put_str.c :+: :+: :+: */ /* +:+ +:+ +:+ */ -/* By: rbousset <marvin@42.fr> +#+ +:+ +#+ */ +/* By: joelecle <marvin@42.fr> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ -/* Created: 2020/02/14 17:06:45 by rbousset #+# #+# */ -/* Updated: 2020/02/14 17:06:45 by rbousset ### ########lyon.fr */ +/* Created: 2020/02/14 17:06:45 by joelecle #+# #+# */ +/* Updated: 2020/02/14 17:06:45 by joelecle ### ########lyon.fr */ /* */ /* ************************************************************************** */ diff --git a/libft/src/ft_printf_put_width.c b/libft/src/ft_printf_put_width.c index e649a65..4779322 100644 --- a/libft/src/ft_printf_put_width.c +++ b/libft/src/ft_printf_put_width.c @@ -3,10 +3,10 @@ /* ::: :::::::: */ /* ft_printf_put_width.c :+: :+: :+: */ /* +:+ +:+ +:+ */ -/* By: rbousset <marvin@42.fr> +#+ +:+ +#+ */ +/* By: joelecle <marvin@42.fr> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ -/* Created: 2020/02/14 17:06:45 by rbousset #+# #+# */ -/* Updated: 2020/02/14 17:06:45 by rbousset ### ########lyon.fr */ +/* Created: 2020/02/14 17:06:45 by joelecle #+# #+# */ +/* Updated: 2020/02/14 17:06:45 by joelecle ### ########lyon.fr */ /* */ /* ************************************************************************** */ diff --git a/libft/src/ft_printf_treat_flags.c b/libft/src/ft_printf_treat_flags.c index d7b11a1..ae37ff1 100644 --- a/libft/src/ft_printf_treat_flags.c +++ b/libft/src/ft_printf_treat_flags.c @@ -3,10 +3,10 @@ /* ::: :::::::: */ /* ft_printf_treat_flags.c :+: :+: :+: */ /* +:+ +:+ +:+ */ -/* By: rbousset <marvin@42.fr> +#+ +:+ +#+ */ +/* By: joelecle <marvin@42.fr> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ -/* Created: 2020/02/14 17:06:45 by rbousset #+# #+# */ -/* Updated: 2020/02/14 17:06:45 by rbousset ### ########lyon.fr */ +/* Created: 2020/02/14 17:06:45 by joelecle #+# #+# */ +/* Updated: 2020/02/14 17:06:45 by joelecle ### ########lyon.fr */ /* */ /* ************************************************************************** */ diff --git a/libft/src/ft_printf_use_flags.c b/libft/src/ft_printf_use_flags.c index 562d499..384eeee 100644 --- a/libft/src/ft_printf_use_flags.c +++ b/libft/src/ft_printf_use_flags.c @@ -3,10 +3,10 @@ /* ::: :::::::: */ /* ft_printf_use_flags.c :+: :+: :+: */ /* +:+ +:+ +:+ */ -/* By: rbousset <marvin@42.fr> +#+ +:+ +#+ */ +/* By: joelecle <marvin@42.fr> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ -/* Created: 2020/02/14 17:06:45 by rbousset #+# #+# */ -/* Updated: 2020/02/14 17:06:45 by rbousset ### ########lyon.fr */ +/* Created: 2020/02/14 17:06:45 by joelecle #+# #+# */ +/* Updated: 2020/02/14 17:06:45 by joelecle ### ########lyon.fr */ /* */ /* ************************************************************************** */ diff --git a/libft/src/ft_putchar.c b/libft/src/ft_putchar.c index b48bd32..eb70867 100644 --- a/libft/src/ft_putchar.c +++ b/libft/src/ft_putchar.c @@ -3,10 +3,10 @@ /* ::: :::::::: */ /* ft_putchar.c :+: :+: :+: */ /* +:+ +:+ +:+ */ -/* By: rbousset <marvin@42.fr> +#+ +:+ +#+ */ +/* By: joelecle <marvin@42.fr> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ -/* Created: 2020/02/14 17:06:56 by rbousset #+# #+# */ -/* Updated: 2020/02/14 17:06:56 by rbousset ### ########lyon.fr */ +/* Created: 2020/02/14 17:06:56 by joelecle #+# #+# */ +/* Updated: 2020/02/14 17:06:56 by joelecle ### ########lyon.fr */ /* */ /* ************************************************************************** */ diff --git a/libft/src/ft_putchar_fd.c b/libft/src/ft_putchar_fd.c index 7e32ea7..9155bd4 100644 --- a/libft/src/ft_putchar_fd.c +++ b/libft/src/ft_putchar_fd.c @@ -3,10 +3,10 @@ /* ::: :::::::: */ /* ft_putchar_fd.c :+: :+: :+: */ /* +:+ +:+ +:+ */ -/* By: rbousset <marvin@42.fr> +#+ +:+ +#+ */ +/* By: joelecle <marvin@42.fr> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ -/* Created: 2020/02/14 17:06:57 by rbousset #+# #+# */ -/* Updated: 2020/02/14 17:06:57 by rbousset ### ########lyon.fr */ +/* Created: 2020/02/14 17:06:57 by joelecle #+# #+# */ +/* Updated: 2020/02/14 17:06:57 by joelecle ### ########lyon.fr */ /* */ /* ************************************************************************** */ diff --git a/libft/src/ft_putendl.c b/libft/src/ft_putendl.c index 8ffbd60..53e8d89 100644 --- a/libft/src/ft_putendl.c +++ b/libft/src/ft_putendl.c @@ -3,10 +3,10 @@ /* ::: :::::::: */ /* ft_putendl.c :+: :+: :+: */ /* +:+ +:+ +:+ */ -/* By: rbousset <marvin@42.fr> +#+ +:+ +#+ */ +/* By: joelecle <marvin@42.fr> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ -/* Created: 2020/02/14 17:06:58 by rbousset #+# #+# */ -/* Updated: 2020/02/14 17:06:58 by rbousset ### ########lyon.fr */ +/* Created: 2020/02/14 17:06:58 by joelecle #+# #+# */ +/* Updated: 2020/02/14 17:06:58 by joelecle ### ########lyon.fr */ /* */ /* ************************************************************************** */ diff --git a/libft/src/ft_putendl_fd.c b/libft/src/ft_putendl_fd.c index c8c6401..c9c975f 100644 --- a/libft/src/ft_putendl_fd.c +++ b/libft/src/ft_putendl_fd.c @@ -3,10 +3,10 @@ /* ::: :::::::: */ /* ft_putendl_fd.c :+: :+: :+: */ /* +:+ +:+ +:+ */ -/* By: rbousset <marvin@42.fr> +#+ +:+ +#+ */ +/* By: joelecle <marvin@42.fr> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ -/* Created: 2020/02/14 17:06:59 by rbousset #+# #+# */ -/* Updated: 2020/02/14 17:06:59 by rbousset ### ########lyon.fr */ +/* Created: 2020/02/14 17:06:59 by joelecle #+# #+# */ +/* Updated: 2020/02/14 17:06:59 by joelecle ### ########lyon.fr */ /* */ /* ************************************************************************** */ diff --git a/libft/src/ft_putnbr.c b/libft/src/ft_putnbr.c index 3aacca3..9f553c2 100644 --- a/libft/src/ft_putnbr.c +++ b/libft/src/ft_putnbr.c @@ -3,10 +3,10 @@ /* ::: :::::::: */ /* ft_putnbr.c :+: :+: :+: */ /* +:+ +:+ +:+ */ -/* By: rbousset <marvin@42.fr> +#+ +:+ +#+ */ +/* By: joelecle <marvin@42.fr> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ -/* Created: 2020/02/14 17:07:00 by rbousset #+# #+# */ -/* Updated: 2020/02/14 17:07:00 by rbousset ### ########lyon.fr */ +/* Created: 2020/02/14 17:07:00 by joelecle #+# #+# */ +/* Updated: 2020/02/14 17:07:00 by joelecle ### ########lyon.fr */ /* */ /* ************************************************************************** */ diff --git a/libft/src/ft_putnbr_base.c b/libft/src/ft_putnbr_base.c index 3a04cad..85fb57a 100644 --- a/libft/src/ft_putnbr_base.c +++ b/libft/src/ft_putnbr_base.c @@ -3,10 +3,10 @@ /* ::: :::::::: */ /* ft_putnbr_base.c :+: :+: :+: */ /* +:+ +:+ +:+ */ -/* By: rbousset <marvin@42.fr> +#+ +:+ +#+ */ +/* By: joelecle <marvin@42.fr> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ -/* Created: 2020/02/14 17:07:01 by rbousset #+# #+# */ -/* Updated: 2020/02/14 17:07:01 by rbousset ### ########lyon.fr */ +/* Created: 2020/02/14 17:07:01 by joelecle #+# #+# */ +/* Updated: 2020/02/14 17:07:01 by joelecle ### ########lyon.fr */ /* */ /* ************************************************************************** */ diff --git a/libft/src/ft_putnbr_fd.c b/libft/src/ft_putnbr_fd.c index 437a6e6..a67636c 100644 --- a/libft/src/ft_putnbr_fd.c +++ b/libft/src/ft_putnbr_fd.c @@ -3,10 +3,10 @@ /* ::: :::::::: */ /* ft_putnbr_fd.c :+: :+: :+: */ /* +:+ +:+ +:+ */ -/* By: rbousset <marvin@42.fr> +#+ +:+ +#+ */ +/* By: joelecle <marvin@42.fr> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ -/* Created: 2020/02/14 17:07:02 by rbousset #+# #+# */ -/* Updated: 2020/02/14 17:07:02 by rbousset ### ########lyon.fr */ +/* Created: 2020/02/14 17:07:02 by joelecle #+# #+# */ +/* Updated: 2020/02/14 17:07:02 by joelecle ### ########lyon.fr */ /* */ /* ************************************************************************** */ diff --git a/libft/src/ft_putnchar.c b/libft/src/ft_putnchar.c index 5fdfc3f..ae96b2a 100644 --- a/libft/src/ft_putnchar.c +++ b/libft/src/ft_putnchar.c @@ -3,10 +3,10 @@ /* ::: :::::::: */ /* ft_putnchar.c :+: :+: :+: */ /* +:+ +:+ +:+ */ -/* By: rbousset <marvin@42.fr> +#+ +:+ +#+ */ +/* By: joelecle <marvin@42.fr> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ -/* Created: 2020/02/14 17:07:03 by rbousset #+# #+# */ -/* Updated: 2020/02/14 17:07:03 by rbousset ### ########lyon.fr */ +/* Created: 2020/02/14 17:07:03 by joelecle #+# #+# */ +/* Updated: 2020/02/14 17:07:03 by joelecle ### ########lyon.fr */ /* */ /* ************************************************************************** */ diff --git a/libft/src/ft_putstr.c b/libft/src/ft_putstr.c index 5cd7a6d..2531319 100644 --- a/libft/src/ft_putstr.c +++ b/libft/src/ft_putstr.c @@ -3,10 +3,10 @@ /* ::: :::::::: */ /* ft_putstr.c :+: :+: :+: */ /* +:+ +:+ +:+ */ -/* By: rbousset <marvin@42.fr> +#+ +:+ +#+ */ +/* By: joelecle <marvin@42.fr> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ -/* Created: 2020/02/14 17:07:03 by rbousset #+# #+# */ -/* Updated: 2020/02/14 17:07:03 by rbousset ### ########lyon.fr */ +/* Created: 2020/02/14 17:07:03 by joelecle #+# #+# */ +/* Updated: 2020/02/14 17:07:03 by joelecle ### ########lyon.fr */ /* */ /* ************************************************************************** */ diff --git a/libft/src/ft_putstr_fd.c b/libft/src/ft_putstr_fd.c index ae827a1..ac48c86 100644 --- a/libft/src/ft_putstr_fd.c +++ b/libft/src/ft_putstr_fd.c @@ -3,10 +3,10 @@ /* ::: :::::::: */ /* ft_putstr_fd.c :+: :+: :+: */ /* +:+ +:+ +:+ */ -/* By: rbousset <marvin@42.fr> +#+ +:+ +#+ */ +/* By: joelecle <marvin@42.fr> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ -/* Created: 2020/02/14 17:07:04 by rbousset #+# #+# */ -/* Updated: 2020/02/14 17:07:04 by rbousset ### ########lyon.fr */ +/* Created: 2020/02/14 17:07:04 by joelecle #+# #+# */ +/* Updated: 2020/02/14 17:07:04 by joelecle ### ########lyon.fr */ /* */ /* ************************************************************************** */ diff --git a/libft/src/ft_split.c b/libft/src/ft_split.c index 3035a00..942377c 100644 --- a/libft/src/ft_split.c +++ b/libft/src/ft_split.c @@ -3,10 +3,10 @@ /* ::: :::::::: */ /* ft_split.c :+: :+: :+: */ /* +:+ +:+ +:+ */ -/* By: rbousset <marvin@42.fr> +#+ +:+ +#+ */ +/* By: joelecle <marvin@42.fr> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ -/* Created: 2020/02/14 17:07:05 by rbousset #+# #+# */ -/* Updated: 2020/02/14 17:07:05 by rbousset ### ########lyon.fr */ +/* Created: 2020/02/14 17:07:05 by joelecle #+# #+# */ +/* Updated: 2020/02/14 17:07:05 by joelecle ### ########lyon.fr */ /* */ /* ************************************************************************** */ diff --git a/libft/src/ft_sprintf.c b/libft/src/ft_sprintf.c index 8413505..ef54e89 100644 --- a/libft/src/ft_sprintf.c +++ b/libft/src/ft_sprintf.c @@ -3,10 +3,10 @@ /* ::: :::::::: */ /* ft_sprintf.c :+: :+: :+: */ /* +:+ +:+ +:+ */ -/* By: rbousset <marvin@42.fr> +#+ +:+ +#+ */ +/* By: joelecle <marvin@42.fr> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ -/* Created: 2020/02/14 17:07:06 by rbousset #+# #+# */ -/* Updated: 2020/02/14 17:07:06 by rbousset ### ########lyon.fr */ +/* Created: 2020/02/14 17:07:06 by joelecle #+# #+# */ +/* Updated: 2020/02/14 17:07:06 by joelecle ### ########lyon.fr */ /* */ /* ************************************************************************** */ diff --git a/libft/src/ft_sqrt.c b/libft/src/ft_sqrt.c index ed69117..24339a6 100644 --- a/libft/src/ft_sqrt.c +++ b/libft/src/ft_sqrt.c @@ -3,10 +3,10 @@ /* ::: :::::::: */ /* ft_sqrt.c :+: :+: :+: */ /* +:+ +:+ +:+ */ -/* By: rbousset <marvin@42.fr> +#+ +:+ +#+ */ +/* By: joelecle <marvin@42.fr> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ -/* Created: 2020/02/14 17:07:06 by rbousset #+# #+# */ -/* Updated: 2020/02/14 17:07:06 by rbousset ### ########lyon.fr */ +/* Created: 2020/02/14 17:07:06 by joelecle #+# #+# */ +/* Updated: 2020/02/14 17:07:06 by joelecle ### ########lyon.fr */ /* */ /* ************************************************************************** */ diff --git a/libft/src/ft_strcat.c b/libft/src/ft_strcat.c index b43e439..e235ce2 100644 --- a/libft/src/ft_strcat.c +++ b/libft/src/ft_strcat.c @@ -3,10 +3,10 @@ /* ::: :::::::: */ /* ft_strcat.c :+: :+: :+: */ /* +:+ +:+ +:+ */ -/* By: rbousset <marvin@42.fr> +#+ +:+ +#+ */ +/* By: joelecle <marvin@42.fr> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ -/* Created: 2020/02/14 17:07:07 by rbousset #+# #+# */ -/* Updated: 2020/02/14 17:07:07 by rbousset ### ########lyon.fr */ +/* Created: 2020/02/14 17:07:07 by joelecle #+# #+# */ +/* Updated: 2020/02/14 17:07:07 by joelecle ### ########lyon.fr */ /* */ /* ************************************************************************** */ diff --git a/libft/src/ft_strchr.c b/libft/src/ft_strchr.c index 1f2e745..14db0d0 100644 --- a/libft/src/ft_strchr.c +++ b/libft/src/ft_strchr.c @@ -3,10 +3,10 @@ /* ::: :::::::: */ /* ft_strchr.c :+: :+: :+: */ /* +:+ +:+ +:+ */ -/* By: rbousset <marvin@42.fr> +#+ +:+ +#+ */ +/* By: joelecle <marvin@42.fr> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ -/* Created: 2020/02/14 17:07:07 by rbousset #+# #+# */ -/* Updated: 2020/02/14 17:07:07 by rbousset ### ########lyon.fr */ +/* Created: 2020/02/14 17:07:07 by joelecle #+# #+# */ +/* Updated: 2020/02/14 17:07:07 by joelecle ### ########lyon.fr */ /* */ /* ************************************************************************** */ diff --git a/libft/src/ft_strcmp.c b/libft/src/ft_strcmp.c index 4122ab2..22f05a5 100644 --- a/libft/src/ft_strcmp.c +++ b/libft/src/ft_strcmp.c @@ -3,10 +3,10 @@ /* ::: :::::::: */ /* ft_strcmp.c :+: :+: :+: */ /* +:+ +:+ +:+ */ -/* By: rbousset <marvin@42.fr> +#+ +:+ +#+ */ +/* By: joelecle <marvin@42.fr> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ -/* Created: 2020/02/14 17:07:08 by rbousset #+# #+# */ -/* Updated: 2020/02/14 17:07:08 by rbousset ### ########lyon.fr */ +/* Created: 2020/02/14 17:07:08 by joelecle #+# #+# */ +/* Updated: 2020/02/14 17:07:08 by joelecle ### ########lyon.fr */ /* */ /* ************************************************************************** */ diff --git a/libft/src/ft_strdup.c b/libft/src/ft_strdup.c index ab5b5c1..ed69d35 100644 --- a/libft/src/ft_strdup.c +++ b/libft/src/ft_strdup.c @@ -3,10 +3,10 @@ /* ::: :::::::: */ /* ft_strdup.c :+: :+: :+: */ /* +:+ +:+ +:+ */ -/* By: rbousset <marvin@42.fr> +#+ +:+ +#+ */ +/* By: joelecle <marvin@42.fr> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ -/* Created: 2020/02/14 17:07:09 by rbousset #+# #+# */ -/* Updated: 2020/02/14 17:07:09 by rbousset ### ########lyon.fr */ +/* Created: 2020/02/14 17:07:09 by joelecle #+# #+# */ +/* Updated: 2020/02/14 17:07:09 by joelecle ### ########lyon.fr */ /* */ /* ************************************************************************** */ diff --git a/libft/src/ft_strjoin.c b/libft/src/ft_strjoin.c index 90650d0..e2c8f19 100644 --- a/libft/src/ft_strjoin.c +++ b/libft/src/ft_strjoin.c @@ -3,10 +3,10 @@ /* ::: :::::::: */ /* ft_strjoin.c :+: :+: :+: */ /* +:+ +:+ +:+ */ -/* By: rbousset <marvin@42.fr> +#+ +:+ +#+ */ +/* By: joelecle <marvin@42.fr> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ -/* Created: 2020/02/14 17:07:10 by rbousset #+# #+# */ -/* Updated: 2020/02/14 17:07:10 by rbousset ### ########lyon.fr */ +/* Created: 2020/02/14 17:07:10 by joelecle #+# #+# */ +/* Updated: 2020/02/14 17:07:10 by joelecle ### ########lyon.fr */ /* */ /* ************************************************************************** */ diff --git a/libft/src/ft_strlcat.c b/libft/src/ft_strlcat.c index b9feae1..d9588e6 100644 --- a/libft/src/ft_strlcat.c +++ b/libft/src/ft_strlcat.c @@ -3,10 +3,10 @@ /* ::: :::::::: */ /* ft_strlcat.c :+: :+: :+: */ /* +:+ +:+ +:+ */ -/* By: rbousset <marvin@42.fr> +#+ +:+ +#+ */ +/* By: joelecle <marvin@42.fr> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ -/* Created: 2020/02/14 17:07:10 by rbousset #+# #+# */ -/* Updated: 2020/02/14 17:07:10 by rbousset ### ########lyon.fr */ +/* Created: 2020/02/14 17:07:10 by joelecle #+# #+# */ +/* Updated: 2020/02/14 17:07:10 by joelecle ### ########lyon.fr */ /* */ /* ************************************************************************** */ diff --git a/libft/src/ft_strlchr.c b/libft/src/ft_strlchr.c index 228aa89..f4b4d38 100644 --- a/libft/src/ft_strlchr.c +++ b/libft/src/ft_strlchr.c @@ -3,10 +3,10 @@ /* ::: :::::::: */ /* ft_strlchr.c :+: :+: :+: */ /* +:+ +:+ +:+ */ -/* By: rbousset <marvin@42.fr> +#+ +:+ +#+ */ +/* By: joelecle <marvin@42.fr> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ -/* Created: 2020/02/14 17:07:11 by rbousset #+# #+# */ -/* Updated: 2020/02/14 17:07:11 by rbousset ### ########lyon.fr */ +/* Created: 2020/02/14 17:07:11 by joelecle #+# #+# */ +/* Updated: 2020/02/14 17:07:11 by joelecle ### ########lyon.fr */ /* */ /* ************************************************************************** */ diff --git a/libft/src/ft_strlcpy.c b/libft/src/ft_strlcpy.c index ed4d924..eb60651 100644 --- a/libft/src/ft_strlcpy.c +++ b/libft/src/ft_strlcpy.c @@ -3,10 +3,10 @@ /* ::: :::::::: */ /* ft_strlcpy.c :+: :+: :+: */ /* +:+ +:+ +:+ */ -/* By: rbousset <marvin@42.fr> +#+ +:+ +#+ */ +/* By: joelecle <marvin@42.fr> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ -/* Created: 2020/02/14 17:07:11 by rbousset #+# #+# */ -/* Updated: 2020/02/14 17:07:11 by rbousset ### ########lyon.fr */ +/* Created: 2020/02/14 17:07:11 by joelecle #+# #+# */ +/* Updated: 2020/02/14 17:07:11 by joelecle ### ########lyon.fr */ /* */ /* ************************************************************************** */ diff --git a/libft/src/ft_strlen.c b/libft/src/ft_strlen.c index 90f5110..208d0e2 100644 --- a/libft/src/ft_strlen.c +++ b/libft/src/ft_strlen.c @@ -3,10 +3,10 @@ /* ::: :::::::: */ /* ft_strlen.c :+: :+: :+: */ /* +:+ +:+ +:+ */ -/* By: rbousset <marvin@42.fr> +#+ +:+ +#+ */ +/* By: joelecle <marvin@42.fr> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ -/* Created: 2020/02/14 17:07:12 by rbousset #+# #+# */ -/* Updated: 2020/02/14 17:07:12 by rbousset ### ########lyon.fr */ +/* Created: 2020/02/14 17:07:12 by joelecle #+# #+# */ +/* Updated: 2020/02/14 17:07:12 by joelecle ### ########lyon.fr */ /* */ /* ************************************************************************** */ diff --git a/libft/src/ft_strmapi.c b/libft/src/ft_strmapi.c index fe455c1..5239a6f 100644 --- a/libft/src/ft_strmapi.c +++ b/libft/src/ft_strmapi.c @@ -3,10 +3,10 @@ /* ::: :::::::: */ /* ft_strmapi.c :+: :+: :+: */ /* +:+ +:+ +:+ */ -/* By: rbousset <marvin@42.fr> +#+ +:+ +#+ */ +/* By: joelecle <marvin@42.fr> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ -/* Created: 2020/02/14 17:07:13 by rbousset #+# #+# */ -/* Updated: 2020/02/14 17:07:13 by rbousset ### ########lyon.fr */ +/* Created: 2020/02/14 17:07:13 by joelecle #+# #+# */ +/* Updated: 2020/02/14 17:07:13 by joelecle ### ########lyon.fr */ /* */ /* ************************************************************************** */ diff --git a/libft/src/ft_strncmp.c b/libft/src/ft_strncmp.c index 30a4562..cc841f4 100644 --- a/libft/src/ft_strncmp.c +++ b/libft/src/ft_strncmp.c @@ -3,10 +3,10 @@ /* ::: :::::::: */ /* ft_strncmp.c :+: :+: :+: */ /* +:+ +:+ +:+ */ -/* By: rbousset <marvin@42.fr> +#+ +:+ +#+ */ +/* By: joelecle <marvin@42.fr> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ -/* Created: 2020/02/14 17:07:13 by rbousset #+# #+# */ -/* Updated: 2020/02/14 17:07:13 by rbousset ### ########lyon.fr */ +/* Created: 2020/02/14 17:07:13 by joelecle #+# #+# */ +/* Updated: 2020/02/14 17:07:13 by joelecle ### ########lyon.fr */ /* */ /* ************************************************************************** */ diff --git a/libft/src/ft_strnlen.c b/libft/src/ft_strnlen.c index 325fa0d..9dfa39d 100644 --- a/libft/src/ft_strnlen.c +++ b/libft/src/ft_strnlen.c @@ -3,10 +3,10 @@ /* ::: :::::::: */ /* ft_strnlen.c :+: :+: :+: */ /* +:+ +:+ +:+ */ -/* By: rbousset <marvin@42.fr> +#+ +:+ +#+ */ +/* By: joelecle <marvin@42.fr> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ -/* Created: 2020/02/14 17:07:14 by rbousset #+# #+# */ -/* Updated: 2020/02/14 17:07:14 by rbousset ### ########lyon.fr */ +/* Created: 2020/02/14 17:07:14 by joelecle #+# #+# */ +/* Updated: 2020/02/14 17:07:14 by joelecle ### ########lyon.fr */ /* */ /* ************************************************************************** */ diff --git a/libft/src/ft_strnstr.c b/libft/src/ft_strnstr.c index 58e1d0e..f8b00f7 100644 --- a/libft/src/ft_strnstr.c +++ b/libft/src/ft_strnstr.c @@ -3,10 +3,10 @@ /* ::: :::::::: */ /* ft_strnstr.c :+: :+: :+: */ /* +:+ +:+ +:+ */ -/* By: rbousset <marvin@42.fr> +#+ +:+ +#+ */ +/* By: joelecle <marvin@42.fr> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ -/* Created: 2020/02/14 17:07:14 by rbousset #+# #+# */ -/* Updated: 2020/02/14 17:07:14 by rbousset ### ########lyon.fr */ +/* Created: 2020/02/14 17:07:14 by joelecle #+# #+# */ +/* Updated: 2020/02/14 17:07:14 by joelecle ### ########lyon.fr */ /* */ /* ************************************************************************** */ diff --git a/libft/src/ft_strrchr.c b/libft/src/ft_strrchr.c index 1ebbdc3..9a245a9 100644 --- a/libft/src/ft_strrchr.c +++ b/libft/src/ft_strrchr.c @@ -3,10 +3,10 @@ /* ::: :::::::: */ /* ft_strrchr.c :+: :+: :+: */ /* +:+ +:+ +:+ */ -/* By: rbousset <marvin@42.fr> +#+ +:+ +#+ */ +/* By: joelecle <marvin@42.fr> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ -/* Created: 2020/02/14 17:07:15 by rbousset #+# #+# */ -/* Updated: 2020/02/14 17:07:15 by rbousset ### ########lyon.fr */ +/* Created: 2020/02/14 17:07:15 by joelecle #+# #+# */ +/* Updated: 2020/02/14 17:07:15 by joelecle ### ########lyon.fr */ /* */ /* ************************************************************************** */ diff --git a/libft/src/ft_strtrim.c b/libft/src/ft_strtrim.c index 69fd95a..f5b0d67 100644 --- a/libft/src/ft_strtrim.c +++ b/libft/src/ft_strtrim.c @@ -3,10 +3,10 @@ /* ::: :::::::: */ /* ft_strtrim.c :+: :+: :+: */ /* +:+ +:+ +:+ */ -/* By: rbousset <marvin@42.fr> +#+ +:+ +#+ */ +/* By: joelecle <marvin@42.fr> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ -/* Created: 2020/02/14 17:07:15 by rbousset #+# #+# */ -/* Updated: 2020/02/14 17:07:15 by rbousset ### ########lyon.fr */ +/* Created: 2020/02/14 17:07:15 by joelecle #+# #+# */ +/* Updated: 2020/02/14 17:07:15 by joelecle ### ########lyon.fr */ /* */ /* ************************************************************************** */ diff --git a/libft/src/ft_substr.c b/libft/src/ft_substr.c index 6d94368..fb67da7 100644 --- a/libft/src/ft_substr.c +++ b/libft/src/ft_substr.c @@ -3,10 +3,10 @@ /* ::: :::::::: */ /* ft_substr.c :+: :+: :+: */ /* +:+ +:+ +:+ */ -/* By: rbousset <marvin@42.fr> +#+ +:+ +#+ */ +/* By: joelecle <marvin@42.fr> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ -/* Created: 2020/02/14 17:07:15 by rbousset #+# #+# */ -/* Updated: 2020/02/14 17:07:15 by rbousset ### ########lyon.fr */ +/* Created: 2020/02/14 17:07:15 by joelecle #+# #+# */ +/* Updated: 2020/02/14 17:07:15 by joelecle ### ########lyon.fr */ /* */ /* ************************************************************************** */ diff --git a/libft/src/ft_tolower.c b/libft/src/ft_tolower.c index 1877dbb..9d1e14d 100644 --- a/libft/src/ft_tolower.c +++ b/libft/src/ft_tolower.c @@ -3,10 +3,10 @@ /* ::: :::::::: */ /* ft_tolower.c :+: :+: :+: */ /* +:+ +:+ +:+ */ -/* By: rbousset <marvin@42.fr> +#+ +:+ +#+ */ +/* By: joelecle <marvin@42.fr> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ -/* Created: 2020/02/14 17:07:16 by rbousset #+# #+# */ -/* Updated: 2020/02/14 17:07:16 by rbousset ### ########lyon.fr */ +/* Created: 2020/02/14 17:07:16 by joelecle #+# #+# */ +/* Updated: 2020/02/14 17:07:16 by joelecle ### ########lyon.fr */ /* */ /* ************************************************************************** */ diff --git a/libft/src/ft_toupper.c b/libft/src/ft_toupper.c index 864ef70..2bd02ee 100644 --- a/libft/src/ft_toupper.c +++ b/libft/src/ft_toupper.c @@ -3,10 +3,10 @@ /* ::: :::::::: */ /* ft_toupper.c :+: :+: :+: */ /* +:+ +:+ +:+ */ -/* By: rbousset <marvin@42.fr> +#+ +:+ +#+ */ +/* By: joelecle <marvin@42.fr> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ -/* Created: 2020/02/14 17:07:16 by rbousset #+# #+# */ -/* Updated: 2020/02/14 17:07:16 by rbousset ### ########lyon.fr */ +/* Created: 2020/02/14 17:07:16 by joelecle #+# #+# */ +/* Updated: 2020/02/14 17:07:16 by joelecle ### ########lyon.fr */ /* */ /* ************************************************************************** */ diff --git a/libft/src/ft_uintlen.c b/libft/src/ft_uintlen.c index da5be7b..f8deec4 100644 --- a/libft/src/ft_uintlen.c +++ b/libft/src/ft_uintlen.c @@ -3,10 +3,10 @@ /* ::: :::::::: */ /* ft_uintlen.c :+: :+: :+: */ /* +:+ +:+ +:+ */ -/* By: rbousset <marvin@42.fr> +#+ +:+ +#+ */ +/* By: joelecle <marvin@42.fr> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ -/* Created: 2020/02/14 17:07:16 by rbousset #+# #+# */ -/* Updated: 2020/02/14 17:07:16 by rbousset ### ########lyon.fr */ +/* Created: 2020/02/14 17:07:16 by joelecle #+# #+# */ +/* Updated: 2020/02/14 17:07:16 by joelecle ### ########lyon.fr */ /* */ /* ************************************************************************** */ diff --git a/libft/src/ft_uintlen_base.c b/libft/src/ft_uintlen_base.c index ba96a29..ec68057 100644 --- a/libft/src/ft_uintlen_base.c +++ b/libft/src/ft_uintlen_base.c @@ -3,10 +3,10 @@ /* ::: :::::::: */ /* ft_uintlen_base.c :+: :+: :+: */ /* +:+ +:+ +:+ */ -/* By: rbousset <marvin@42.fr> +#+ +:+ +#+ */ +/* By: joelecle <marvin@42.fr> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ -/* Created: 2020/02/14 17:07:17 by rbousset #+# #+# */ -/* Updated: 2020/02/14 17:07:17 by rbousset ### ########lyon.fr */ +/* Created: 2020/02/14 17:07:17 by joelecle #+# #+# */ +/* Updated: 2020/02/14 17:07:17 by joelecle ### ########lyon.fr */ /* */ /* ************************************************************************** */ diff --git a/libft/src/ft_uitoa.c b/libft/src/ft_uitoa.c index f1a5fa2..9f1671a 100644 --- a/libft/src/ft_uitoa.c +++ b/libft/src/ft_uitoa.c @@ -3,10 +3,10 @@ /* ::: :::::::: */ /* ft_uitoa.c :+: :+: :+: */ /* +:+ +:+ +:+ */ -/* By: rbousset <marvin@42.fr> +#+ +:+ +#+ */ +/* By: joelecle <marvin@42.fr> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ -/* Created: 2020/02/14 17:07:18 by rbousset #+# #+# */ -/* Updated: 2020/02/14 17:07:18 by rbousset ### ########lyon.fr */ +/* Created: 2020/02/14 17:07:18 by joelecle #+# #+# */ +/* Updated: 2020/02/14 17:07:18 by joelecle ### ########lyon.fr */ /* */ /* ************************************************************************** */ diff --git a/libft/src/ft_uitoa_base.c b/libft/src/ft_uitoa_base.c index a931d29..0cba1ec 100644 --- a/libft/src/ft_uitoa_base.c +++ b/libft/src/ft_uitoa_base.c @@ -3,10 +3,10 @@ /* ::: :::::::: */ /* ft_uitoa_base.c :+: :+: :+: */ /* +:+ +:+ +:+ */ -/* By: rbousset <marvin@42.fr> +#+ +:+ +#+ */ +/* By: joelecle <marvin@42.fr> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ -/* Created: 2020/02/14 17:07:19 by rbousset #+# #+# */ -/* Updated: 2020/02/14 17:07:19 by rbousset ### ########lyon.fr */ +/* Created: 2020/02/14 17:07:19 by joelecle #+# #+# */ +/* Updated: 2020/02/14 17:07:19 by joelecle ### ########lyon.fr */ /* */ /* ************************************************************************** */ diff --git a/libft/src/get_next_line.c b/libft/src/get_next_line.c index ae64125..f2bf94a 100644 --- a/libft/src/get_next_line.c +++ b/libft/src/get_next_line.c @@ -3,10 +3,10 @@ /* ::: :::::::: */ /* get_next_line.c :+: :+: :+: */ /* +:+ +:+ +:+ */ -/* By: rbousset <marvin@42.fr> +#+ +:+ +#+ */ +/* By: joelecle <marvin@42.fr> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ -/* Created: 2020/02/14 17:07:20 by rbousset #+# #+# */ -/* Updated: 2020/02/14 17:07:20 by rbousset ### ########lyon.fr */ +/* Created: 2020/02/14 17:07:20 by joelecle #+# #+# */ +/* Updated: 2020/02/14 17:07:20 by joelecle ### ########lyon.fr */ /* */ /* ************************************************************************** */ diff --git a/libft/src/get_next_line_utils.c b/libft/src/get_next_line_utils.c index 42d5d3a..584b691 100644 --- a/libft/src/get_next_line_utils.c +++ b/libft/src/get_next_line_utils.c @@ -3,10 +3,10 @@ /* ::: :::::::: */ /* get_next_line_utils.c :+: :+: :+: */ /* +:+ +:+ +:+ */ -/* By: rbousset <marvin@42.fr> +#+ +:+ +#+ */ +/* By: joelecle <marvin@42.fr> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ -/* Created: 2020/02/14 17:07:20 by rbousset #+# #+# */ -/* Updated: 2020/02/14 17:07:20 by rbousset ### ########lyon.fr */ +/* Created: 2020/02/14 17:07:20 by joelecle #+# #+# */ +/* Updated: 2020/02/14 17:07:20 by joelecle ### ########lyon.fr */ /* */ /* ************************************************************************** */ |