From c20241eb1896b4eb209674091bd541a35ba8ebb1 Mon Sep 17 00:00:00 2001 From: djonker Date: Thu, 26 Oct 2023 18:45:58 +0200 Subject: [PATCH] updated libft --- Makefile | 4 ++-- ft_printf.h | 8 ++++---- src/Linux/ft_printf_proc_a.c | 14 +++++++------- src/Linux/ft_printf_proc_b.c | 14 +++++++------- src/Linux/ft_printf_proc_c.c | 14 +++++++------- src/Linux/ft_printf_proc_d.c | 14 +++++++------- src/Linux/ft_printf_proc_e.c | 14 +++++++------- src/Linux/ft_printf_proc_f.c | 14 +++++++------- src/Linux/ft_printf_proc_g.c | 14 +++++++------- src/Linux/ft_printf_proc_inf.c | 14 +++++++------- src/Linux/ft_printf_proc_o.c | 14 +++++++------- src/Linux/ft_printf_proc_p.c | 14 +++++++------- src/Linux/ft_printf_proc_prec.c | 14 +++++++------- src/Linux/ft_printf_proc_s.c | 14 +++++++------- src/Linux/ft_printf_proc_u.c | 14 +++++++------- src/Linux/ft_printf_proc_x.c | 14 +++++++------- src/Mac/ft_printf_proc_a.c | 14 +++++++------- src/Mac/ft_printf_proc_b.c | 14 +++++++------- src/Mac/ft_printf_proc_c.c | 14 +++++++------- src/Mac/ft_printf_proc_d.c | 14 +++++++------- src/Mac/ft_printf_proc_e.c | 14 +++++++------- src/Mac/ft_printf_proc_f.c | 14 +++++++------- src/Mac/ft_printf_proc_g.c | 14 +++++++------- src/Mac/ft_printf_proc_inf.c | 14 +++++++------- src/Mac/ft_printf_proc_o.c | 14 +++++++------- src/Mac/ft_printf_proc_p.c | 14 +++++++------- src/Mac/ft_printf_proc_prec.c | 14 +++++++------- src/Mac/ft_printf_proc_s.c | 14 +++++++------- src/Mac/ft_printf_proc_u.c | 14 +++++++------- src/Mac/ft_printf_proc_x.c | 14 +++++++------- src/ft_printf.c | 14 +++++++------- src/ft_printf_flags.c | 14 +++++++------- src/ft_printf_length.c | 14 +++++++------- tests/src/ftpfoutbasic.c | 14 +++++++------- tests/src/ftpfoutchar.c | 14 +++++++------- tests/src/ftpfoutcharstar.c | 14 +++++++------- tests/src/ftpfoutfloat.c | 14 +++++++------- tests/src/ftpfoutfloatstar.c | 14 +++++++------- tests/src/ftpfoutint.c | 14 +++++++------- tests/src/ftpfoutintstar.c | 14 +++++++------- tests/src/ftpfoutn.c | 14 +++++++------- tests/src/ftpfoutnullbasic.c | 14 +++++++------- tests/src/ftpfoutnullchar.c | 14 +++++++------- tests/src/ftpfoutnullpointer.c | 14 +++++++------- tests/src/ftpfoutnullstr.c | 14 +++++++------- tests/src/ftpfoutstring.c | 14 +++++++------- tests/src/ftpfoutstringstar.c | 14 +++++++------- tests/src/ftpfretbasic.c | 14 +++++++------- tests/src/ftpfretchar.c | 14 +++++++------- tests/src/ftpfretcharstar.c | 14 +++++++------- tests/src/ftpfretfloat.c | 14 +++++++------- tests/src/ftpfretfloatstar.c | 14 +++++++------- tests/src/ftpfretint.c | 14 +++++++------- tests/src/ftpfretintstar.c | 14 +++++++------- tests/src/ftpfretn.c | 14 +++++++------- tests/src/ftpfretnullbasic.c | 14 +++++++------- tests/src/ftpfretnullchar.c | 14 +++++++------- tests/src/ftpfretnullpointer.c | 14 +++++++------- tests/src/ftpfretnullstr.c | 14 +++++++------- tests/src/ftpfretstring.c | 14 +++++++------- tests/src/ftpfretstringstar.c | 14 +++++++------- tests/src/outputpointer.c | 14 +++++++------- tests/src/outputpointerstar.c | 14 +++++++------- tests/src/realoutbasic.c | 14 +++++++------- tests/src/realoutchar.c | 14 +++++++------- tests/src/realoutcharstar.c | 14 +++++++------- tests/src/realoutfloat.c | 14 +++++++------- tests/src/realoutfloatstar.c | 14 +++++++------- tests/src/realoutint.c | 14 +++++++------- tests/src/realoutintstar.c | 14 +++++++------- tests/src/realoutn.c | 14 +++++++------- tests/src/realoutnullbasic.c | 14 +++++++------- tests/src/realoutnullchar.c | 14 +++++++------- tests/src/realoutnullpointer.c | 14 +++++++------- tests/src/realoutnullstr.c | 14 +++++++------- tests/src/realoutstring.c | 14 +++++++------- tests/src/realoutstringstar.c | 14 +++++++------- tests/src/realretbasic.c | 14 +++++++------- tests/src/realretchar.c | 14 +++++++------- tests/src/realretcharstar.c | 14 +++++++------- tests/src/realretfloat.c | 14 +++++++------- tests/src/realretfloatstar.c | 14 +++++++------- tests/src/realretint.c | 14 +++++++------- tests/src/realretintstar.c | 14 +++++++------- tests/src/realretn.c | 14 +++++++------- tests/src/realretnullbasic.c | 14 +++++++------- tests/src/realretnullchar.c | 14 +++++++------- tests/src/realretnullpointer.c | 14 +++++++------- tests/src/realretnullstr.c | 14 +++++++------- tests/src/realretstring.c | 14 +++++++------- tests/src/realretstringstar.c | 14 +++++++------- tests/src/returnpointer.c | 14 +++++++------- tests/src/returnpointerstar.c | 14 +++++++------- 93 files changed, 643 insertions(+), 643 deletions(-) diff --git a/Makefile b/Makefile index 63c7bea..0e12b0a 100644 --- a/Makefile +++ b/Makefile @@ -6,7 +6,7 @@ # By: djonker +#+ # # +#+ # # Created: 2020/12/19 06:09:46 by djonker #+# #+# # -# Updated: 2023/10/26 18:00:38 by houtworm ######## odam.nl # +# Updated: 2023/10/26 18:35:03 by houtworm ######## odam.nl # # # # **************************************************************************** # @@ -81,7 +81,7 @@ fclean: clean re: fclean all -$(OBJ): $(SRC) printf.h Makefile +$(OBJ): $(SRC) ft_printf.h Makefile @mkdir -p $(dir $@) @printf "\e[1;34mBuilding $@\n\e[0;00m" @$(CC) $(CFLAGS) -c $(@:obj/%.o=src/%.c) -o $@ diff --git a/ft_printf.h b/ft_printf.h index 3f9176f..c5fafa5 100644 --- a/ft_printf.h +++ b/ft_printf.h @@ -1,12 +1,12 @@ /* ************************************************************************** */ /* */ /* :::::::: */ -/* ft_printf.h |o_o || | */ +/* ft_printf.h :+: :+: */ /* +:+ */ -/* By: djonker +#+ */ +/* By: houtworm +#+ */ /* +#+ */ -/* Created: 2021/03/16 07:28:50 by djonker #+# #+# */ -/* Updated: 2023/02/26 04:19:06 by houtworm \___)=(___/ */ +/* Created: 2023/10/26 18:37:11 by houtworm #+# #+# */ +/* Updated: 2023/10/26 18:37:12 by houtworm ######## odam.nl */ /* */ /* ************************************************************************** */ diff --git a/src/Linux/ft_printf_proc_a.c b/src/Linux/ft_printf_proc_a.c index 2cd9620..0259cb1 100644 --- a/src/Linux/ft_printf_proc_a.c +++ b/src/Linux/ft_printf_proc_a.c @@ -1,12 +1,12 @@ /* ************************************************************************** */ /* */ -/* .--. _ */ -/* ft_printf_proc_a.c |o_o || | */ -/* |:_/ || |_ _ ___ __ */ -/* By: djonker // \ \ __| | | \ \/ / */ -/* (| | )|_| |_| |> < */ -/* Created: 2021/06/06 12:26:37 by djonker /'\_ _/`\__|\__,_/_/\_\ */ -/* Updated: 2023/02/26 04:46:16 by houtworm \___)=(___/ */ +/* :::::::: */ +/* ft_printf_proc_a.c :+: :+: */ +/* +:+ */ +/* By: houtworm +#+ */ +/* +#+ */ +/* Created: 2023/10/26 18:37:15 by houtworm #+# #+# */ +/* Updated: 2023/10/26 18:37:15 by houtworm ######## odam.nl */ /* */ /* ************************************************************************** */ diff --git a/src/Linux/ft_printf_proc_b.c b/src/Linux/ft_printf_proc_b.c index 6bf59a6..7059097 100644 --- a/src/Linux/ft_printf_proc_b.c +++ b/src/Linux/ft_printf_proc_b.c @@ -1,12 +1,12 @@ /* ************************************************************************** */ /* */ -/* .--. _ */ -/* ft_printf_proc_b.c |o_o || | */ -/* |:_/ || |_ _ ___ __ */ -/* By: djonker // \ \ __| | | \ \/ / */ -/* (| | )|_| |_| |> < */ -/* Created: 2021/06/06 12:26:37 by djonker /'\_ _/`\__|\__,_/_/\_\ */ -/* Updated: 2023/03/05 21:32:32 by houtworm \___)=(___/ */ +/* :::::::: */ +/* ft_printf_proc_b.c :+: :+: */ +/* +:+ */ +/* By: houtworm +#+ */ +/* +#+ */ +/* Created: 2023/10/26 18:37:18 by houtworm #+# #+# */ +/* Updated: 2023/10/26 18:37:19 by houtworm ######## odam.nl */ /* */ /* ************************************************************************** */ diff --git a/src/Linux/ft_printf_proc_c.c b/src/Linux/ft_printf_proc_c.c index 8dc76a5..727514d 100644 --- a/src/Linux/ft_printf_proc_c.c +++ b/src/Linux/ft_printf_proc_c.c @@ -1,12 +1,12 @@ /* ************************************************************************** */ /* */ -/* .--. _ */ -/* ft_printf_proc_c.c :+: :+: :+: */ -/* |:_/ || |_ _ ___ __ */ -/* By: djonker // \ \ __| | | \ \/ / */ -/* (| | )|_| |_| |> < */ -/* Created: 2021/06/06 12:26:37 by djonker /'\_ _/`\__|\__,_/_/\_\ */ -/* Updated: 2023/02/07 01:21:21 by houtworm ### ########.fr */ +/* :::::::: */ +/* ft_printf_proc_c.c :+: :+: */ +/* +:+ */ +/* By: houtworm +#+ */ +/* +#+ */ +/* Created: 2023/10/26 18:37:22 by houtworm #+# #+# */ +/* Updated: 2023/10/26 18:37:22 by houtworm ######## odam.nl */ /* */ /* ************************************************************************** */ diff --git a/src/Linux/ft_printf_proc_d.c b/src/Linux/ft_printf_proc_d.c index 82b01dd..09af370 100644 --- a/src/Linux/ft_printf_proc_d.c +++ b/src/Linux/ft_printf_proc_d.c @@ -1,12 +1,12 @@ /* ************************************************************************** */ /* */ -/* .--. _ */ -/* ft_printf_proc_d.c :+: :+: :+: */ -/* |:_/ || |_ _ ___ __ */ -/* By: djonker // \ \ __| | | \ \/ / */ -/* (| | )|_| |_| |> < */ -/* Created: 2021/06/06 12:26:37 by djonker /'\_ _/`\__|\__,_/_/\_\ */ -/* Updated: 2023/02/07 01:21:31 by houtworm ### ########.fr */ +/* :::::::: */ +/* ft_printf_proc_d.c :+: :+: */ +/* +:+ */ +/* By: houtworm +#+ */ +/* +#+ */ +/* Created: 2023/10/26 18:37:25 by houtworm #+# #+# */ +/* Updated: 2023/10/26 18:37:25 by houtworm ######## odam.nl */ /* */ /* ************************************************************************** */ diff --git a/src/Linux/ft_printf_proc_e.c b/src/Linux/ft_printf_proc_e.c index 2b751ea..048a39d 100644 --- a/src/Linux/ft_printf_proc_e.c +++ b/src/Linux/ft_printf_proc_e.c @@ -1,12 +1,12 @@ /* ************************************************************************** */ /* */ -/* .--. _ */ -/* ft_printf_proc_e.c |o_o || | */ -/* |:_/ || |_ _ ___ __ */ -/* By: djonker // \ \ __| | | \ \/ / */ -/* (| | )|_| |_| |> < */ -/* Created: 2021/06/06 12:26:37 by djonker /'\_ _/`\__|\__,_/_/\_\ */ -/* Updated: 2023/03/06 02:28:30 by houtworm \___)=(___/ */ +/* :::::::: */ +/* ft_printf_proc_e.c :+: :+: */ +/* +:+ */ +/* By: houtworm +#+ */ +/* +#+ */ +/* Created: 2023/10/26 18:37:28 by houtworm #+# #+# */ +/* Updated: 2023/10/26 18:37:29 by houtworm ######## odam.nl */ /* */ /* ************************************************************************** */ diff --git a/src/Linux/ft_printf_proc_f.c b/src/Linux/ft_printf_proc_f.c index a28f927..3fa7aa8 100644 --- a/src/Linux/ft_printf_proc_f.c +++ b/src/Linux/ft_printf_proc_f.c @@ -1,12 +1,12 @@ /* ************************************************************************** */ /* */ -/* .--. _ */ -/* ft_printf_proc_f.c |o_o || | */ -/* |:_/ || |_ _ ___ __ */ -/* By: djonker // \ \ __| | | \ \/ / */ -/* (| | )|_| |_| |> < */ -/* Created: 2021/06/06 12:26:37 by djonker /'\_ _/`\__|\__,_/_/\_\ */ -/* Updated: 2023/03/06 01:35:26 by houtworm \___)=(___/ */ +/* :::::::: */ +/* ft_printf_proc_f.c :+: :+: */ +/* +:+ */ +/* By: houtworm +#+ */ +/* +#+ */ +/* Created: 2023/10/26 18:37:31 by houtworm #+# #+# */ +/* Updated: 2023/10/26 18:37:32 by houtworm ######## odam.nl */ /* */ /* ************************************************************************** */ diff --git a/src/Linux/ft_printf_proc_g.c b/src/Linux/ft_printf_proc_g.c index bd07d92..0bdcad1 100644 --- a/src/Linux/ft_printf_proc_g.c +++ b/src/Linux/ft_printf_proc_g.c @@ -1,12 +1,12 @@ /* ************************************************************************** */ /* */ -/* .--. _ */ -/* ft_printf_proc_g.c |o_o || | */ -/* |:_/ || |_ _ ___ __ */ -/* By: djonker // \ \ __| | | \ \/ / */ -/* (| | )|_| |_| |> < */ -/* Created: 2021/06/06 12:26:37 by djonker /'\_ _/`\__|\__,_/_/\_\ */ -/* Updated: 2023/03/06 02:02:50 by houtworm \___)=(___/ */ +/* :::::::: */ +/* ft_printf_proc_g.c :+: :+: */ +/* +:+ */ +/* By: houtworm +#+ */ +/* +#+ */ +/* Created: 2023/10/26 18:37:35 by houtworm #+# #+# */ +/* Updated: 2023/10/26 18:37:36 by houtworm ######## odam.nl */ /* */ /* ************************************************************************** */ diff --git a/src/Linux/ft_printf_proc_inf.c b/src/Linux/ft_printf_proc_inf.c index 96f00ac..377f08e 100644 --- a/src/Linux/ft_printf_proc_inf.c +++ b/src/Linux/ft_printf_proc_inf.c @@ -1,12 +1,12 @@ /* ************************************************************************** */ /* */ -/* .--. _ */ -/* ft_printf_proc_inf.c :+: :+: :+: */ -/* |:_/ || |_ _ ___ __ */ -/* By: djonker // \ \ __| | | \ \/ / */ -/* (| | )|_| |_| |> < */ -/* Created: 2021/06/06 12:26:37 by djonker /'\_ _/`\__|\__,_/_/\_\ */ -/* Updated: 2023/02/07 01:21:35 by houtworm ### ########.fr */ +/* :::::::: */ +/* ft_printf_proc_inf.c :+: :+: */ +/* +:+ */ +/* By: houtworm +#+ */ +/* +#+ */ +/* Created: 2023/10/26 18:37:39 by houtworm #+# #+# */ +/* Updated: 2023/10/26 18:37:39 by houtworm ######## odam.nl */ /* */ /* ************************************************************************** */ diff --git a/src/Linux/ft_printf_proc_o.c b/src/Linux/ft_printf_proc_o.c index 41f49de..d5bafb8 100644 --- a/src/Linux/ft_printf_proc_o.c +++ b/src/Linux/ft_printf_proc_o.c @@ -1,12 +1,12 @@ /* ************************************************************************** */ /* */ -/* .--. _ */ -/* ft_printf_proc_o.c |o_o || | */ -/* |:_/ || |_ _ ___ __ */ -/* By: djonker // \ \ __| | | \ \/ / */ -/* (| | )|_| |_| |> < */ -/* Created: 2021/06/06 12:26:37 by djonker /'\_ _/`\__|\__,_/_/\_\ */ -/* Updated: 2023/03/05 21:43:52 by houtworm \___)=(___/ */ +/* :::::::: */ +/* ft_printf_proc_o.c :+: :+: */ +/* +:+ */ +/* By: houtworm +#+ */ +/* +#+ */ +/* Created: 2023/10/26 18:37:42 by houtworm #+# #+# */ +/* Updated: 2023/10/26 18:37:42 by houtworm ######## odam.nl */ /* */ /* ************************************************************************** */ diff --git a/src/Linux/ft_printf_proc_p.c b/src/Linux/ft_printf_proc_p.c index 46d9020..54687ae 100644 --- a/src/Linux/ft_printf_proc_p.c +++ b/src/Linux/ft_printf_proc_p.c @@ -1,12 +1,12 @@ /* ************************************************************************** */ /* */ -/* .--. _ */ -/* ft_printf_proc_p.c |o_o || | */ -/* |:_/ || |_ _ ___ __ */ -/* By: djonker // \ \ __| | | \ \/ / */ -/* (| | )|_| |_| |> < */ -/* Created: 2021/06/06 12:26:37 by djonker /'\_ _/`\__|\__,_/_/\_\ */ -/* Updated: 2023/03/05 20:44:02 by houtworm \___)=(___/ */ +/* :::::::: */ +/* ft_printf_proc_p.c :+: :+: */ +/* +:+ */ +/* By: houtworm +#+ */ +/* +#+ */ +/* Created: 2023/10/26 18:37:44 by houtworm #+# #+# */ +/* Updated: 2023/10/26 18:37:45 by houtworm ######## odam.nl */ /* */ /* ************************************************************************** */ diff --git a/src/Linux/ft_printf_proc_prec.c b/src/Linux/ft_printf_proc_prec.c index a8b069d..05e25ef 100644 --- a/src/Linux/ft_printf_proc_prec.c +++ b/src/Linux/ft_printf_proc_prec.c @@ -1,12 +1,12 @@ /* ************************************************************************** */ /* */ -/* .--. _ */ -/* ft_printf_proc_prec.c :+: :+: :+: */ -/* |:_/ || |_ _ ___ __ */ -/* By: djonker // \ \ __| | | \ \/ / */ -/* (| | )|_| |_| |> < */ -/* Created: 2021/06/06 12:26:37 by djonker /'\_ _/`\__|\__,_/_/\_\ */ -/* Updated: 2023/02/07 01:21:36 by houtworm ### ########.fr */ +/* :::::::: */ +/* ft_printf_proc_prec.c :+: :+: */ +/* +:+ */ +/* By: houtworm +#+ */ +/* +#+ */ +/* Created: 2023/10/26 18:37:48 by houtworm #+# #+# */ +/* Updated: 2023/10/26 18:37:48 by houtworm ######## odam.nl */ /* */ /* ************************************************************************** */ diff --git a/src/Linux/ft_printf_proc_s.c b/src/Linux/ft_printf_proc_s.c index 3c070ed..723128a 100644 --- a/src/Linux/ft_printf_proc_s.c +++ b/src/Linux/ft_printf_proc_s.c @@ -1,12 +1,12 @@ /* ************************************************************************** */ /* */ -/* .--. _ */ -/* ft_printf_proc_s.c :+: :+: :+: */ -/* |:_/ || |_ _ ___ __ */ -/* By: djonker // \ \ __| | | \ \/ / */ -/* (| | )|_| |_| |> < */ -/* Created: 2021/06/06 12:26:37 by djonker /'\_ _/`\__|\__,_/_/\_\ */ -/* Updated: 2023/02/07 01:21:36 by houtworm ### ########.fr */ +/* :::::::: */ +/* ft_printf_proc_s.c :+: :+: */ +/* +:+ */ +/* By: houtworm +#+ */ +/* +#+ */ +/* Created: 2023/10/26 18:37:51 by houtworm #+# #+# */ +/* Updated: 2023/10/26 18:37:51 by houtworm ######## odam.nl */ /* */ /* ************************************************************************** */ diff --git a/src/Linux/ft_printf_proc_u.c b/src/Linux/ft_printf_proc_u.c index d30989b..7a443b8 100644 --- a/src/Linux/ft_printf_proc_u.c +++ b/src/Linux/ft_printf_proc_u.c @@ -1,12 +1,12 @@ /* ************************************************************************** */ /* */ -/* .--. _ */ -/* ft_printf_proc_u.c :+: :+: :+: */ -/* |:_/ || |_ _ ___ __ */ -/* By: djonker // \ \ __| | | \ \/ / */ -/* (| | )|_| |_| |> < */ -/* Created: 2021/06/06 12:26:37 by djonker /'\_ _/`\__|\__,_/_/\_\ */ -/* Updated: 2023/02/07 01:21:36 by houtworm ### ########.fr */ +/* :::::::: */ +/* ft_printf_proc_u.c :+: :+: */ +/* +:+ */ +/* By: houtworm +#+ */ +/* +#+ */ +/* Created: 2023/10/26 18:37:56 by houtworm #+# #+# */ +/* Updated: 2023/10/26 18:37:56 by houtworm ######## odam.nl */ /* */ /* ************************************************************************** */ diff --git a/src/Linux/ft_printf_proc_x.c b/src/Linux/ft_printf_proc_x.c index 5c19722..483b523 100644 --- a/src/Linux/ft_printf_proc_x.c +++ b/src/Linux/ft_printf_proc_x.c @@ -1,12 +1,12 @@ /* ************************************************************************** */ /* */ -/* .--. _ */ -/* ft_printf_proc_x.c |o_o || | */ -/* |:_/ || |_ _ ___ __ */ -/* By: djonker // \ \ __| | | \ \/ / */ -/* (| | )|_| |_| |> < */ -/* Created: 2021/06/06 12:26:37 by djonker /'\_ _/`\__|\__,_/_/\_\ */ -/* Updated: 2023/03/05 20:37:13 by houtworm \___)=(___/ */ +/* :::::::: */ +/* ft_printf_proc_x.c :+: :+: */ +/* +:+ */ +/* By: houtworm +#+ */ +/* +#+ */ +/* Created: 2023/10/26 18:37:59 by houtworm #+# #+# */ +/* Updated: 2023/10/26 18:38:00 by houtworm ######## odam.nl */ /* */ /* ************************************************************************** */ diff --git a/src/Mac/ft_printf_proc_a.c b/src/Mac/ft_printf_proc_a.c index 932527f..a1758d8 100644 --- a/src/Mac/ft_printf_proc_a.c +++ b/src/Mac/ft_printf_proc_a.c @@ -1,12 +1,12 @@ /* ************************************************************************** */ /* */ -/* .--. _ */ -/* ft_printf_proc_a.c :+: :+: :+: */ -/* |:_/ || |_ _ ___ __ */ -/* By: djonker // \ \ __| | | \ \/ / */ -/* (| | )|_| |_| |> < */ -/* Created: 2021/06/06 12:26:37 by djonker /'\_ _/`\__|\__,_/_/\_\ */ -/* Updated: 2023/02/07 01:21:36 by houtworm ### ########.fr */ +/* :::::::: */ +/* ft_printf_proc_a.c :+: :+: */ +/* +:+ */ +/* By: houtworm +#+ */ +/* +#+ */ +/* Created: 2023/10/26 18:38:03 by houtworm #+# #+# */ +/* Updated: 2023/10/26 18:38:03 by houtworm ######## odam.nl */ /* */ /* ************************************************************************** */ diff --git a/src/Mac/ft_printf_proc_b.c b/src/Mac/ft_printf_proc_b.c index ffe8961..6dc983e 100644 --- a/src/Mac/ft_printf_proc_b.c +++ b/src/Mac/ft_printf_proc_b.c @@ -1,12 +1,12 @@ /* ************************************************************************** */ /* */ -/* .--. _ */ -/* ft_printf_proc_b.c :+: :+: :+: */ -/* |:_/ || |_ _ ___ __ */ -/* By: djonker // \ \ __| | | \ \/ / */ -/* (| | )|_| |_| |> < */ -/* Created: 2021/06/06 12:26:37 by djonker /'\_ _/`\__|\__,_/_/\_\ */ -/* Updated: 2023/02/07 01:21:36 by houtworm ### ########.fr */ +/* :::::::: */ +/* ft_printf_proc_b.c :+: :+: */ +/* +:+ */ +/* By: houtworm +#+ */ +/* +#+ */ +/* Created: 2023/10/26 18:38:06 by houtworm #+# #+# */ +/* Updated: 2023/10/26 18:38:06 by houtworm ######## odam.nl */ /* */ /* ************************************************************************** */ diff --git a/src/Mac/ft_printf_proc_c.c b/src/Mac/ft_printf_proc_c.c index e5e60d2..9f77eb8 100644 --- a/src/Mac/ft_printf_proc_c.c +++ b/src/Mac/ft_printf_proc_c.c @@ -1,12 +1,12 @@ /* ************************************************************************** */ /* */ -/* .--. _ */ -/* ft_printf_proc_c.c :+: :+: :+: */ -/* |:_/ || |_ _ ___ __ */ -/* By: djonker // \ \ __| | | \ \/ / */ -/* (| | )|_| |_| |> < */ -/* Created: 2021/06/06 12:26:37 by djonker /'\_ _/`\__|\__,_/_/\_\ */ -/* Updated: 2023/02/07 01:21:36 by houtworm ### ########.fr */ +/* :::::::: */ +/* ft_printf_proc_c.c :+: :+: */ +/* +:+ */ +/* By: houtworm +#+ */ +/* +#+ */ +/* Created: 2023/10/26 18:38:09 by houtworm #+# #+# */ +/* Updated: 2023/10/26 18:38:10 by houtworm ######## odam.nl */ /* */ /* ************************************************************************** */ diff --git a/src/Mac/ft_printf_proc_d.c b/src/Mac/ft_printf_proc_d.c index 6249b93..8859fc4 100644 --- a/src/Mac/ft_printf_proc_d.c +++ b/src/Mac/ft_printf_proc_d.c @@ -1,12 +1,12 @@ /* ************************************************************************** */ /* */ -/* .--. _ */ -/* ft_printf_proc_d.c :+: :+: :+: */ -/* |:_/ || |_ _ ___ __ */ -/* By: djonker // \ \ __| | | \ \/ / */ -/* (| | )|_| |_| |> < */ -/* Created: 2021/06/06 12:26:37 by djonker /'\_ _/`\__|\__,_/_/\_\ */ -/* Updated: 2023/02/07 01:21:36 by houtworm ### ########.fr */ +/* :::::::: */ +/* ft_printf_proc_d.c :+: :+: */ +/* +:+ */ +/* By: houtworm +#+ */ +/* +#+ */ +/* Created: 2023/10/26 18:38:14 by houtworm #+# #+# */ +/* Updated: 2023/10/26 18:38:14 by houtworm ######## odam.nl */ /* */ /* ************************************************************************** */ diff --git a/src/Mac/ft_printf_proc_e.c b/src/Mac/ft_printf_proc_e.c index 447be8c..3bf3e6f 100644 --- a/src/Mac/ft_printf_proc_e.c +++ b/src/Mac/ft_printf_proc_e.c @@ -1,12 +1,12 @@ /* ************************************************************************** */ /* */ -/* .--. _ */ -/* ft_printf_proc_e.c :+: :+: :+: */ -/* |:_/ || |_ _ ___ __ */ -/* By: djonker // \ \ __| | | \ \/ / */ -/* (| | )|_| |_| |> < */ -/* Created: 2021/06/06 12:26:37 by djonker /'\_ _/`\__|\__,_/_/\_\ */ -/* Updated: 2023/02/07 01:21:36 by houtworm ### ########.fr */ +/* :::::::: */ +/* ft_printf_proc_e.c :+: :+: */ +/* +:+ */ +/* By: houtworm +#+ */ +/* +#+ */ +/* Created: 2023/10/26 18:38:16 by houtworm #+# #+# */ +/* Updated: 2023/10/26 18:38:17 by houtworm ######## odam.nl */ /* */ /* ************************************************************************** */ diff --git a/src/Mac/ft_printf_proc_f.c b/src/Mac/ft_printf_proc_f.c index 7d6b159..da18ed8 100644 --- a/src/Mac/ft_printf_proc_f.c +++ b/src/Mac/ft_printf_proc_f.c @@ -1,12 +1,12 @@ /* ************************************************************************** */ /* */ -/* .--. _ */ -/* ft_printf_proc_f.c |o_o || | */ -/* |:_/ || |_ _ ___ __ */ -/* By: djonker // \ \ __| | | \ \/ / */ -/* (| | )|_| |_| |> < */ -/* Created: 2021/06/06 12:26:37 by djonker /'\_ _/`\__|\__,_/_/\_\ */ -/* Updated: 2023/03/06 00:47:33 by houtworm \___)=(___/ */ +/* :::::::: */ +/* ft_printf_proc_f.c :+: :+: */ +/* +:+ */ +/* By: houtworm +#+ */ +/* +#+ */ +/* Created: 2023/10/26 18:38:19 by houtworm #+# #+# */ +/* Updated: 2023/10/26 18:38:20 by houtworm ######## odam.nl */ /* */ /* ************************************************************************** */ diff --git a/src/Mac/ft_printf_proc_g.c b/src/Mac/ft_printf_proc_g.c index 24881bd..69349ed 100644 --- a/src/Mac/ft_printf_proc_g.c +++ b/src/Mac/ft_printf_proc_g.c @@ -1,12 +1,12 @@ /* ************************************************************************** */ /* */ -/* .--. _ */ -/* ft_printf_proc_g.c :+: :+: :+: */ -/* |:_/ || |_ _ ___ __ */ -/* By: djonker // \ \ __| | | \ \/ / */ -/* (| | )|_| |_| |> < */ -/* Created: 2021/06/06 12:26:37 by djonker /'\_ _/`\__|\__,_/_/\_\ */ -/* Updated: 2023/02/07 01:21:37 by houtworm ### ########.fr */ +/* :::::::: */ +/* ft_printf_proc_g.c :+: :+: */ +/* +:+ */ +/* By: houtworm +#+ */ +/* +#+ */ +/* Created: 2023/10/26 18:38:23 by houtworm #+# #+# */ +/* Updated: 2023/10/26 18:38:24 by houtworm ######## odam.nl */ /* */ /* ************************************************************************** */ diff --git a/src/Mac/ft_printf_proc_inf.c b/src/Mac/ft_printf_proc_inf.c index d20f259..e2c904f 100644 --- a/src/Mac/ft_printf_proc_inf.c +++ b/src/Mac/ft_printf_proc_inf.c @@ -1,12 +1,12 @@ /* ************************************************************************** */ /* */ -/* .--. _ */ -/* ft_printf_proc_inf.c :+: :+: :+: */ -/* |:_/ || |_ _ ___ __ */ -/* By: djonker // \ \ __| | | \ \/ / */ -/* (| | )|_| |_| |> < */ -/* Created: 2021/06/06 12:26:37 by djonker /'\_ _/`\__|\__,_/_/\_\ */ -/* Updated: 2023/02/07 01:21:37 by houtworm ### ########.fr */ +/* :::::::: */ +/* ft_printf_proc_inf.c :+: :+: */ +/* +:+ */ +/* By: houtworm +#+ */ +/* +#+ */ +/* Created: 2023/10/26 18:38:27 by houtworm #+# #+# */ +/* Updated: 2023/10/26 18:38:27 by houtworm ######## odam.nl */ /* */ /* ************************************************************************** */ diff --git a/src/Mac/ft_printf_proc_o.c b/src/Mac/ft_printf_proc_o.c index c6fc292..c9e902c 100644 --- a/src/Mac/ft_printf_proc_o.c +++ b/src/Mac/ft_printf_proc_o.c @@ -1,12 +1,12 @@ /* ************************************************************************** */ /* */ -/* .--. _ */ -/* ft_printf_proc_o.c |o_o || | */ -/* |:_/ || |_ _ ___ __ */ -/* By: djonker // \ \ __| | | \ \/ / */ -/* (| | )|_| |_| |> < */ -/* Created: 2021/06/06 12:26:37 by djonker /'\_ _/`\__|\__,_/_/\_\ */ -/* Updated: 2023/03/09 17:09:27 by djonker \___)=(___/ */ +/* :::::::: */ +/* ft_printf_proc_o.c :+: :+: */ +/* +:+ */ +/* By: houtworm +#+ */ +/* +#+ */ +/* Created: 2023/10/26 18:38:32 by houtworm #+# #+# */ +/* Updated: 2023/10/26 18:38:34 by houtworm ######## odam.nl */ /* */ /* ************************************************************************** */ diff --git a/src/Mac/ft_printf_proc_p.c b/src/Mac/ft_printf_proc_p.c index 42f246c..c294c54 100644 --- a/src/Mac/ft_printf_proc_p.c +++ b/src/Mac/ft_printf_proc_p.c @@ -1,12 +1,12 @@ /* ************************************************************************** */ /* */ -/* .--. _ */ -/* ft_printf_proc_p.c :+: :+: :+: */ -/* |:_/ || |_ _ ___ __ */ -/* By: djonker // \ \ __| | | \ \/ / */ -/* (| | )|_| |_| |> < */ -/* Created: 2021/06/06 12:26:37 by djonker /'\_ _/`\__|\__,_/_/\_\ */ -/* Updated: 2023/02/07 01:21:37 by houtworm ### ########.fr */ +/* :::::::: */ +/* ft_printf_proc_p.c :+: :+: */ +/* +:+ */ +/* By: houtworm +#+ */ +/* +#+ */ +/* Created: 2023/10/26 18:38:37 by houtworm #+# #+# */ +/* Updated: 2023/10/26 18:38:37 by houtworm ######## odam.nl */ /* */ /* ************************************************************************** */ diff --git a/src/Mac/ft_printf_proc_prec.c b/src/Mac/ft_printf_proc_prec.c index ed73205..2b1d210 100644 --- a/src/Mac/ft_printf_proc_prec.c +++ b/src/Mac/ft_printf_proc_prec.c @@ -1,12 +1,12 @@ /* ************************************************************************** */ /* */ -/* .--. _ */ -/* ft_printf_proc_prec.c :+: :+: :+: */ -/* |:_/ || |_ _ ___ __ */ -/* By: djonker // \ \ __| | | \ \/ / */ -/* (| | )|_| |_| |> < */ -/* Created: 2021/06/06 12:26:37 by djonker /'\_ _/`\__|\__,_/_/\_\ */ -/* Updated: 2023/02/07 01:21:37 by houtworm ### ########.fr */ +/* :::::::: */ +/* ft_printf_proc_prec.c :+: :+: */ +/* +:+ */ +/* By: houtworm +#+ */ +/* +#+ */ +/* Created: 2023/10/26 18:38:40 by houtworm #+# #+# */ +/* Updated: 2023/10/26 18:38:40 by houtworm ######## odam.nl */ /* */ /* ************************************************************************** */ diff --git a/src/Mac/ft_printf_proc_s.c b/src/Mac/ft_printf_proc_s.c index 833947a..441a299 100644 --- a/src/Mac/ft_printf_proc_s.c +++ b/src/Mac/ft_printf_proc_s.c @@ -1,12 +1,12 @@ /* ************************************************************************** */ /* */ -/* .--. _ */ -/* ft_printf_proc_s.c :+: :+: :+: */ -/* |:_/ || |_ _ ___ __ */ -/* By: djonker // \ \ __| | | \ \/ / */ -/* (| | )|_| |_| |> < */ -/* Created: 2021/06/06 12:26:37 by djonker /'\_ _/`\__|\__,_/_/\_\ */ -/* Updated: 2023/02/07 01:21:37 by houtworm ### ########.fr */ +/* :::::::: */ +/* ft_printf_proc_s.c :+: :+: */ +/* +:+ */ +/* By: houtworm +#+ */ +/* +#+ */ +/* Created: 2023/10/26 18:38:45 by houtworm #+# #+# */ +/* Updated: 2023/10/26 18:38:45 by houtworm ######## odam.nl */ /* */ /* ************************************************************************** */ diff --git a/src/Mac/ft_printf_proc_u.c b/src/Mac/ft_printf_proc_u.c index de26321..29a3eac 100644 --- a/src/Mac/ft_printf_proc_u.c +++ b/src/Mac/ft_printf_proc_u.c @@ -1,12 +1,12 @@ /* ************************************************************************** */ /* */ -/* .--. _ */ -/* ft_printf_proc_u.c :+: :+: :+: */ -/* |:_/ || |_ _ ___ __ */ -/* By: djonker // \ \ __| | | \ \/ / */ -/* (| | )|_| |_| |> < */ -/* Created: 2021/06/06 12:26:37 by djonker /'\_ _/`\__|\__,_/_/\_\ */ -/* Updated: 2023/02/07 01:21:37 by houtworm ### ########.fr */ +/* :::::::: */ +/* ft_printf_proc_u.c :+: :+: */ +/* +:+ */ +/* By: houtworm +#+ */ +/* +#+ */ +/* Created: 2023/10/26 18:38:48 by houtworm #+# #+# */ +/* Updated: 2023/10/26 18:38:48 by houtworm ######## odam.nl */ /* */ /* ************************************************************************** */ diff --git a/src/Mac/ft_printf_proc_x.c b/src/Mac/ft_printf_proc_x.c index 9aae1ab..408f833 100644 --- a/src/Mac/ft_printf_proc_x.c +++ b/src/Mac/ft_printf_proc_x.c @@ -1,12 +1,12 @@ /* ************************************************************************** */ /* */ -/* .--. _ */ -/* ft_printf_proc_x.c :+: :+: :+: */ -/* |:_/ || |_ _ ___ __ */ -/* By: djonker // \ \ __| | | \ \/ / */ -/* (| | )|_| |_| |> < */ -/* Created: 2021/06/06 12:26:37 by djonker /'\_ _/`\__|\__,_/_/\_\ */ -/* Updated: 2023/02/07 01:21:38 by houtworm ### ########.fr */ +/* :::::::: */ +/* ft_printf_proc_x.c :+: :+: */ +/* +:+ */ +/* By: houtworm +#+ */ +/* +#+ */ +/* Created: 2023/10/26 18:38:51 by houtworm #+# #+# */ +/* Updated: 2023/10/26 18:38:51 by houtworm ######## odam.nl */ /* */ /* ************************************************************************** */ diff --git a/src/ft_printf.c b/src/ft_printf.c index 69a75d1..91affff 100644 --- a/src/ft_printf.c +++ b/src/ft_printf.c @@ -1,12 +1,12 @@ /* ************************************************************************** */ /* */ -/* .--. _ */ -/* ft_printf.c |o_o || | */ -/* |:_/ || |_ _ ___ __ */ -/* By: djonker djonker@student.codam.nl // \ \ __| | | \ \/ / */ -/* (| | )|_| |_| |> < */ -/* Created: 2020/12/19 06:09:42 by djonker /'\_ _/`\__|\__,_/_/\_\ */ -/* Updated: 2023/03/07 03:15:14 by houtworm \___)=(___/ */ +/* :::::::: */ +/* ft_printf.c :+: :+: */ +/* +:+ */ +/* By: houtworm +#+ */ +/* +#+ */ +/* Created: 2023/10/26 18:43:43 by houtworm #+# #+# */ +/* Updated: 2023/10/26 18:43:44 by houtworm ######## odam.nl */ /* */ /* ************************************************************************** */ diff --git a/src/ft_printf_flags.c b/src/ft_printf_flags.c index 2df563b..8d4c2c7 100644 --- a/src/ft_printf_flags.c +++ b/src/ft_printf_flags.c @@ -1,12 +1,12 @@ /* ************************************************************************** */ /* */ -/* .--. _ */ -/* ft_printf_flags.c :+: :+: :+: */ -/* |:_/ || |_ _ ___ __ */ -/* By: djonker // \ \ __| | | \ \/ / */ -/* (| | )|_| |_| |> < */ -/* Created: 2021/06/11 19:30:29 by djonker /'\_ _/`\__|\__,_/_/\_\ */ -/* Updated: 2023/02/07 01:22:16 by houtworm ### ########.fr */ +/* :::::::: */ +/* ft_printf_flags.c :+: :+: */ +/* +:+ */ +/* By: houtworm +#+ */ +/* +#+ */ +/* Created: 2023/10/26 18:43:46 by houtworm #+# #+# */ +/* Updated: 2023/10/26 18:43:47 by houtworm ######## odam.nl */ /* */ /* ************************************************************************** */ diff --git a/src/ft_printf_length.c b/src/ft_printf_length.c index fd5299a..507ef55 100644 --- a/src/ft_printf_length.c +++ b/src/ft_printf_length.c @@ -1,12 +1,12 @@ /* ************************************************************************** */ /* */ -/* .--. _ */ -/* ft_printf_length.c |o_o || | */ -/* |:_/ || |_ _ ___ __ */ -/* By: djonker // \ \ __| | | \ \/ / */ -/* (| | )|_| |_| |> < */ -/* Created: 2021/06/16 23:07:02 by djonker /'\_ _/`\__|\__,_/_/\_\ */ -/* Updated: 2023/02/20 13:20:38 by houtworm \___)=(___/ */ +/* :::::::: */ +/* ft_printf_length.c :+: :+: */ +/* +:+ */ +/* By: houtworm +#+ */ +/* +#+ */ +/* Created: 2023/10/26 18:43:49 by houtworm #+# #+# */ +/* Updated: 2023/10/26 18:43:50 by houtworm ######## odam.nl */ /* */ /* ************************************************************************** */ diff --git a/tests/src/ftpfoutbasic.c b/tests/src/ftpfoutbasic.c index 7c4bf66..cb83022 100644 --- a/tests/src/ftpfoutbasic.c +++ b/tests/src/ftpfoutbasic.c @@ -1,12 +1,12 @@ /* ************************************************************************** */ /* */ -/* .--. _ */ -/* ftpfoutbasic.c |o_o || | */ -/* |:_/ || |_ _ ___ __ */ -/* By: houtworm // \ \ __| | | \ \/ / */ -/* (| | )|_| |_| |> < */ -/* Created: 2023/02/25 17:07:23 by houtworm /'\_ _/`\__|\__,_/_/\_\ */ -/* Updated: 2023/03/01 22:38:49 by djonker \___)=(___/ */ +/* :::::::: */ +/* ftpfoutbasic.c :+: :+: */ +/* +:+ */ +/* By: houtworm +#+ */ +/* +#+ */ +/* Created: 2023/10/26 18:39:43 by houtworm #+# #+# */ +/* Updated: 2023/10/26 18:39:44 by houtworm ######## odam.nl */ /* */ /* ************************************************************************** */ diff --git a/tests/src/ftpfoutchar.c b/tests/src/ftpfoutchar.c index b229051..e908577 100644 --- a/tests/src/ftpfoutchar.c +++ b/tests/src/ftpfoutchar.c @@ -1,12 +1,12 @@ /* ************************************************************************** */ /* */ -/* .--. _ */ -/* ftpfoutchar.c |o_o || | */ -/* |:_/ || |_ _ ___ __ */ -/* By: houtworm // \ \ __| | | \ \/ / */ -/* (| | )|_| |_| |> < */ -/* Created: 2023/02/25 17:07:23 by houtworm /'\_ _/`\__|\__,_/_/\_\ */ -/* Updated: 2023/03/01 22:38:55 by djonker \___)=(___/ */ +/* :::::::: */ +/* ftpfoutchar.c :+: :+: */ +/* +:+ */ +/* By: houtworm +#+ */ +/* +#+ */ +/* Created: 2023/10/26 18:39:47 by houtworm #+# #+# */ +/* Updated: 2023/10/26 18:39:47 by houtworm ######## odam.nl */ /* */ /* ************************************************************************** */ diff --git a/tests/src/ftpfoutcharstar.c b/tests/src/ftpfoutcharstar.c index 5d44eb3..5aaee21 100644 --- a/tests/src/ftpfoutcharstar.c +++ b/tests/src/ftpfoutcharstar.c @@ -1,12 +1,12 @@ /* ************************************************************************** */ /* */ -/* .--. _ */ -/* ftpfoutchar.c |o_o || | */ -/* |:_/ || |_ _ ___ __ */ -/* By: houtworm // \ \ __| | | \ \/ / */ -/* (| | )|_| |_| |> < */ -/* Created: 2023/02/25 17:07:23 by houtworm /'\_ _/`\__|\__,_/_/\_\ */ -/* Updated: 2023/03/01 22:38:55 by djonker \___)=(___/ */ +/* :::::::: */ +/* ftpfoutcharstar.c :+: :+: */ +/* +:+ */ +/* By: houtworm +#+ */ +/* +#+ */ +/* Created: 2023/10/26 18:39:50 by houtworm #+# #+# */ +/* Updated: 2023/10/26 18:39:51 by houtworm ######## odam.nl */ /* */ /* ************************************************************************** */ diff --git a/tests/src/ftpfoutfloat.c b/tests/src/ftpfoutfloat.c index 46f31f2..1c606e8 100644 --- a/tests/src/ftpfoutfloat.c +++ b/tests/src/ftpfoutfloat.c @@ -1,12 +1,12 @@ /* ************************************************************************** */ /* */ -/* .--. _ */ -/* ftpfoutfloat.c |o_o || | */ -/* |:_/ || |_ _ ___ __ */ -/* By: houtworm // \ \ __| | | \ \/ / */ -/* (| | )|_| |_| |> < */ -/* Created: 2023/02/25 17:07:23 by houtworm /'\_ _/`\__|\__,_/_/\_\ */ -/* Updated: 2023/03/01 22:39:02 by djonker \___)=(___/ */ +/* :::::::: */ +/* ftpfoutfloat.c :+: :+: */ +/* +:+ */ +/* By: houtworm +#+ */ +/* +#+ */ +/* Created: 2023/10/26 18:39:55 by houtworm #+# #+# */ +/* Updated: 2023/10/26 18:39:55 by houtworm ######## odam.nl */ /* */ /* ************************************************************************** */ diff --git a/tests/src/ftpfoutfloatstar.c b/tests/src/ftpfoutfloatstar.c index ad9cd6c..521397a 100644 --- a/tests/src/ftpfoutfloatstar.c +++ b/tests/src/ftpfoutfloatstar.c @@ -1,12 +1,12 @@ /* ************************************************************************** */ /* */ -/* .--. _ */ -/* ftpfoutfloat.c |o_o || | */ -/* |:_/ || |_ _ ___ __ */ -/* By: houtworm // \ \ __| | | \ \/ / */ -/* (| | )|_| |_| |> < */ -/* Created: 2023/02/25 17:07:23 by houtworm /'\_ _/`\__|\__,_/_/\_\ */ -/* Updated: 2023/03/01 22:39:02 by djonker \___)=(___/ */ +/* :::::::: */ +/* ftpfoutfloatstar.c :+: :+: */ +/* +:+ */ +/* By: houtworm +#+ */ +/* +#+ */ +/* Created: 2023/10/26 18:39:58 by houtworm #+# #+# */ +/* Updated: 2023/10/26 18:39:58 by houtworm ######## odam.nl */ /* */ /* ************************************************************************** */ diff --git a/tests/src/ftpfoutint.c b/tests/src/ftpfoutint.c index c3d1834..bb62fc7 100644 --- a/tests/src/ftpfoutint.c +++ b/tests/src/ftpfoutint.c @@ -1,12 +1,12 @@ /* ************************************************************************** */ /* */ -/* .--. _ */ -/* ftpfoutint.c |o_o || | */ -/* |:_/ || |_ _ ___ __ */ -/* By: houtworm // \ \ __| | | \ \/ / */ -/* (| | )|_| |_| |> < */ -/* Created: 2023/02/25 17:07:23 by houtworm /'\_ _/`\__|\__,_/_/\_\ */ -/* Updated: 2023/03/01 22:39:06 by djonker \___)=(___/ */ +/* :::::::: */ +/* ftpfoutint.c :+: :+: */ +/* +:+ */ +/* By: houtworm +#+ */ +/* +#+ */ +/* Created: 2023/10/26 18:40:01 by houtworm #+# #+# */ +/* Updated: 2023/10/26 18:40:01 by houtworm ######## odam.nl */ /* */ /* ************************************************************************** */ diff --git a/tests/src/ftpfoutintstar.c b/tests/src/ftpfoutintstar.c index 04bfbd3..8cc5f6b 100644 --- a/tests/src/ftpfoutintstar.c +++ b/tests/src/ftpfoutintstar.c @@ -1,12 +1,12 @@ /* ************************************************************************** */ /* */ -/* .--. _ */ -/* ftpfoutint.c |o_o || | */ -/* |:_/ || |_ _ ___ __ */ -/* By: houtworm // \ \ __| | | \ \/ / */ -/* (| | )|_| |_| |> < */ -/* Created: 2023/02/25 17:07:23 by houtworm /'\_ _/`\__|\__,_/_/\_\ */ -/* Updated: 2023/03/01 22:39:06 by djonker \___)=(___/ */ +/* :::::::: */ +/* ftpfoutintstar.c :+: :+: */ +/* +:+ */ +/* By: houtworm +#+ */ +/* +#+ */ +/* Created: 2023/10/26 18:40:04 by houtworm #+# #+# */ +/* Updated: 2023/10/26 18:40:05 by houtworm ######## odam.nl */ /* */ /* ************************************************************************** */ diff --git a/tests/src/ftpfoutn.c b/tests/src/ftpfoutn.c index 22fe57d..b61b506 100644 --- a/tests/src/ftpfoutn.c +++ b/tests/src/ftpfoutn.c @@ -1,12 +1,12 @@ /* ************************************************************************** */ /* */ -/* .--. _ */ -/* ftpfoutn.c |o_o || | */ -/* |:_/ || |_ _ ___ __ */ -/* By: houtworm // \ \ __| | | \ \/ / */ -/* (| | )|_| |_| |> < */ -/* Created: 2023/02/25 17:07:23 by houtworm /'\_ _/`\__|\__,_/_/\_\ */ -/* Updated: 2023/03/01 22:39:14 by djonker \___)=(___/ */ +/* :::::::: */ +/* ftpfoutn.c :+: :+: */ +/* +:+ */ +/* By: houtworm +#+ */ +/* +#+ */ +/* Created: 2023/10/26 18:40:07 by houtworm #+# #+# */ +/* Updated: 2023/10/26 18:40:08 by houtworm ######## odam.nl */ /* */ /* ************************************************************************** */ diff --git a/tests/src/ftpfoutnullbasic.c b/tests/src/ftpfoutnullbasic.c index 89eeb00..eed5462 100644 --- a/tests/src/ftpfoutnullbasic.c +++ b/tests/src/ftpfoutnullbasic.c @@ -1,12 +1,12 @@ /* ************************************************************************** */ /* */ -/* .--. _ */ -/* ftpfoutnullbasic.c |o_o || | */ -/* |:_/ || |_ _ ___ __ */ -/* By: houtworm // \ \ __| | | \ \/ / */ -/* (| | )|_| |_| |> < */ -/* Created: 2023/02/25 17:07:23 by houtworm /'\_ _/`\__|\__,_/_/\_\ */ -/* Updated: 2023/03/07 02:32:42 by houtworm \___)=(___/ */ +/* :::::::: */ +/* ftpfoutnullbasic.c :+: :+: */ +/* +:+ */ +/* By: houtworm +#+ */ +/* +#+ */ +/* Created: 2023/10/26 18:40:10 by houtworm #+# #+# */ +/* Updated: 2023/10/26 18:40:11 by houtworm ######## odam.nl */ /* */ /* ************************************************************************** */ diff --git a/tests/src/ftpfoutnullchar.c b/tests/src/ftpfoutnullchar.c index 7f1b6be..0c50789 100644 --- a/tests/src/ftpfoutnullchar.c +++ b/tests/src/ftpfoutnullchar.c @@ -1,12 +1,12 @@ /* ************************************************************************** */ /* */ -/* .--. _ */ -/* ftpfoutnullchar.c |o_o || | */ -/* |:_/ || |_ _ ___ __ */ -/* By: houtworm // \ \ __| | | \ \/ / */ -/* (| | )|_| |_| |> < */ -/* Created: 2023/02/25 17:07:23 by houtworm /'\_ _/`\__|\__,_/_/\_\ */ -/* Updated: 2023/03/07 02:33:17 by houtworm \___)=(___/ */ +/* :::::::: */ +/* ftpfoutnullchar.c :+: :+: */ +/* +:+ */ +/* By: houtworm +#+ */ +/* +#+ */ +/* Created: 2023/10/26 18:40:13 by houtworm #+# #+# */ +/* Updated: 2023/10/26 18:40:14 by houtworm ######## odam.nl */ /* */ /* ************************************************************************** */ diff --git a/tests/src/ftpfoutnullpointer.c b/tests/src/ftpfoutnullpointer.c index ddb3fd8..751cf0f 100644 --- a/tests/src/ftpfoutnullpointer.c +++ b/tests/src/ftpfoutnullpointer.c @@ -1,12 +1,12 @@ /* ************************************************************************** */ /* */ -/* .--. _ */ -/* ftpfoutnullpointer.c |o_o || | */ -/* |:_/ || |_ _ ___ __ */ -/* By: houtworm // \ \ __| | | \ \/ / */ -/* (| | )|_| |_| |> < */ -/* Created: 2023/02/25 17:07:23 by houtworm /'\_ _/`\__|\__,_/_/\_\ */ -/* Updated: 2023/03/07 02:33:46 by houtworm \___)=(___/ */ +/* :::::::: */ +/* ftpfoutnullpointer.c :+: :+: */ +/* +:+ */ +/* By: houtworm +#+ */ +/* +#+ */ +/* Created: 2023/10/26 18:40:27 by houtworm #+# #+# */ +/* Updated: 2023/10/26 18:40:28 by houtworm ######## odam.nl */ /* */ /* ************************************************************************** */ diff --git a/tests/src/ftpfoutnullstr.c b/tests/src/ftpfoutnullstr.c index 95f90f9..0b3ac6a 100644 --- a/tests/src/ftpfoutnullstr.c +++ b/tests/src/ftpfoutnullstr.c @@ -1,12 +1,12 @@ /* ************************************************************************** */ /* */ -/* .--. _ */ -/* ftpfoutnullstr.c |o_o || | */ -/* |:_/ || |_ _ ___ __ */ -/* By: houtworm // \ \ __| | | \ \/ / */ -/* (| | )|_| |_| |> < */ -/* Created: 2023/02/25 17:07:23 by houtworm /'\_ _/`\__|\__,_/_/\_\ */ -/* Updated: 2023/03/07 02:34:07 by houtworm \___)=(___/ */ +/* :::::::: */ +/* ftpfoutnullstr.c :+: :+: */ +/* +:+ */ +/* By: houtworm +#+ */ +/* +#+ */ +/* Created: 2023/10/26 18:40:30 by houtworm #+# #+# */ +/* Updated: 2023/10/26 18:40:31 by houtworm ######## odam.nl */ /* */ /* ************************************************************************** */ diff --git a/tests/src/ftpfoutstring.c b/tests/src/ftpfoutstring.c index 1b9d9bf..8913138 100644 --- a/tests/src/ftpfoutstring.c +++ b/tests/src/ftpfoutstring.c @@ -1,12 +1,12 @@ /* ************************************************************************** */ /* */ -/* .--. _ */ -/* ftpfoutstring.c |o_o || | */ -/* |:_/ || |_ _ ___ __ */ -/* By: houtworm // \ \ __| | | \ \/ / */ -/* (| | )|_| |_| |> < */ -/* Created: 2023/02/25 17:07:23 by houtworm /'\_ _/`\__|\__,_/_/\_\ */ -/* Updated: 2023/03/01 22:39:18 by djonker \___)=(___/ */ +/* :::::::: */ +/* ftpfoutstring.c :+: :+: */ +/* +:+ */ +/* By: houtworm +#+ */ +/* +#+ */ +/* Created: 2023/10/26 18:40:33 by houtworm #+# #+# */ +/* Updated: 2023/10/26 18:40:34 by houtworm ######## odam.nl */ /* */ /* ************************************************************************** */ diff --git a/tests/src/ftpfoutstringstar.c b/tests/src/ftpfoutstringstar.c index 33af9c9..ed84a52 100644 --- a/tests/src/ftpfoutstringstar.c +++ b/tests/src/ftpfoutstringstar.c @@ -1,12 +1,12 @@ /* ************************************************************************** */ /* */ -/* .--. _ */ -/* ftpfoutstring.c |o_o || | */ -/* |:_/ || |_ _ ___ __ */ -/* By: houtworm // \ \ __| | | \ \/ / */ -/* (| | )|_| |_| |> < */ -/* Created: 2023/02/25 17:07:23 by houtworm /'\_ _/`\__|\__,_/_/\_\ */ -/* Updated: 2023/03/01 22:39:18 by djonker \___)=(___/ */ +/* :::::::: */ +/* ftpfoutstringstar.c :+: :+: */ +/* +:+ */ +/* By: houtworm +#+ */ +/* +#+ */ +/* Created: 2023/10/26 18:40:36 by houtworm #+# #+# */ +/* Updated: 2023/10/26 18:40:37 by houtworm ######## odam.nl */ /* */ /* ************************************************************************** */ diff --git a/tests/src/ftpfretbasic.c b/tests/src/ftpfretbasic.c index 739ea54..ca93d67 100644 --- a/tests/src/ftpfretbasic.c +++ b/tests/src/ftpfretbasic.c @@ -1,12 +1,12 @@ /* ************************************************************************** */ /* */ -/* .--. _ */ -/* ftpfretbasic.c |o_o || | */ -/* |:_/ || |_ _ ___ __ */ -/* By: houtworm // \ \ __| | | \ \/ / */ -/* (| | )|_| |_| |> < */ -/* Created: 2023/02/25 17:07:23 by houtworm /'\_ _/`\__|\__,_/_/\_\ */ -/* Updated: 2023/03/01 22:39:21 by djonker \___)=(___/ */ +/* :::::::: */ +/* ftpfretbasic.c :+: :+: */ +/* +:+ */ +/* By: houtworm +#+ */ +/* +#+ */ +/* Created: 2023/10/26 18:40:40 by houtworm #+# #+# */ +/* Updated: 2023/10/26 18:40:40 by houtworm ######## odam.nl */ /* */ /* ************************************************************************** */ diff --git a/tests/src/ftpfretchar.c b/tests/src/ftpfretchar.c index 96abb8d..451ac1e 100644 --- a/tests/src/ftpfretchar.c +++ b/tests/src/ftpfretchar.c @@ -1,12 +1,12 @@ /* ************************************************************************** */ /* */ -/* .--. _ */ -/* ftpfretchar.c |o_o || | */ -/* |:_/ || |_ _ ___ __ */ -/* By: houtworm // \ \ __| | | \ \/ / */ -/* (| | )|_| |_| |> < */ -/* Created: 2023/02/25 17:07:23 by houtworm /'\_ _/`\__|\__,_/_/\_\ */ -/* Updated: 2023/03/01 22:39:28 by djonker \___)=(___/ */ +/* :::::::: */ +/* ftpfretchar.c :+: :+: */ +/* +:+ */ +/* By: houtworm +#+ */ +/* +#+ */ +/* Created: 2023/10/26 18:40:43 by houtworm #+# #+# */ +/* Updated: 2023/10/26 18:40:43 by houtworm ######## odam.nl */ /* */ /* ************************************************************************** */ diff --git a/tests/src/ftpfretcharstar.c b/tests/src/ftpfretcharstar.c index cfba521..50977f6 100644 --- a/tests/src/ftpfretcharstar.c +++ b/tests/src/ftpfretcharstar.c @@ -1,12 +1,12 @@ /* ************************************************************************** */ /* */ -/* .--. _ */ -/* ftpfretchar.c |o_o || | */ -/* |:_/ || |_ _ ___ __ */ -/* By: houtworm // \ \ __| | | \ \/ / */ -/* (| | )|_| |_| |> < */ -/* Created: 2023/02/25 17:07:23 by houtworm /'\_ _/`\__|\__,_/_/\_\ */ -/* Updated: 2023/03/01 22:39:28 by djonker \___)=(___/ */ +/* :::::::: */ +/* ftpfretcharstar.c :+: :+: */ +/* +:+ */ +/* By: houtworm +#+ */ +/* +#+ */ +/* Created: 2023/10/26 18:40:45 by houtworm #+# #+# */ +/* Updated: 2023/10/26 18:40:46 by houtworm ######## odam.nl */ /* */ /* ************************************************************************** */ diff --git a/tests/src/ftpfretfloat.c b/tests/src/ftpfretfloat.c index ff3de29..a5a0ac9 100644 --- a/tests/src/ftpfretfloat.c +++ b/tests/src/ftpfretfloat.c @@ -1,12 +1,12 @@ /* ************************************************************************** */ /* */ -/* .--. _ */ -/* ftpfretfloat.c |o_o || | */ -/* |:_/ || |_ _ ___ __ */ -/* By: houtworm // \ \ __| | | \ \/ / */ -/* (| | )|_| |_| |> < */ -/* Created: 2023/02/25 17:07:23 by houtworm /'\_ _/`\__|\__,_/_/\_\ */ -/* Updated: 2023/03/01 22:39:32 by djonker \___)=(___/ */ +/* :::::::: */ +/* ftpfretfloat.c :+: :+: */ +/* +:+ */ +/* By: houtworm +#+ */ +/* +#+ */ +/* Created: 2023/10/26 18:40:49 by houtworm #+# #+# */ +/* Updated: 2023/10/26 18:40:49 by houtworm ######## odam.nl */ /* */ /* ************************************************************************** */ diff --git a/tests/src/ftpfretfloatstar.c b/tests/src/ftpfretfloatstar.c index 71fe280..05c87c0 100644 --- a/tests/src/ftpfretfloatstar.c +++ b/tests/src/ftpfretfloatstar.c @@ -1,12 +1,12 @@ /* ************************************************************************** */ /* */ -/* .--. _ */ -/* ftpfretfloat.c |o_o || | */ -/* |:_/ || |_ _ ___ __ */ -/* By: houtworm // \ \ __| | | \ \/ / */ -/* (| | )|_| |_| |> < */ -/* Created: 2023/02/25 17:07:23 by houtworm /'\_ _/`\__|\__,_/_/\_\ */ -/* Updated: 2023/03/01 22:39:32 by djonker \___)=(___/ */ +/* :::::::: */ +/* ftpfretfloatstar.c :+: :+: */ +/* +:+ */ +/* By: houtworm +#+ */ +/* +#+ */ +/* Created: 2023/10/26 18:40:54 by houtworm #+# #+# */ +/* Updated: 2023/10/26 18:40:55 by houtworm ######## odam.nl */ /* */ /* ************************************************************************** */ diff --git a/tests/src/ftpfretint.c b/tests/src/ftpfretint.c index 249a2d4..dc98be6 100644 --- a/tests/src/ftpfretint.c +++ b/tests/src/ftpfretint.c @@ -1,12 +1,12 @@ /* ************************************************************************** */ /* */ -/* .--. _ */ -/* ftpfretint.c |o_o || | */ -/* |:_/ || |_ _ ___ __ */ -/* By: houtworm // \ \ __| | | \ \/ / */ -/* (| | )|_| |_| |> < */ -/* Created: 2023/02/25 17:07:23 by houtworm /'\_ _/`\__|\__,_/_/\_\ */ -/* Updated: 2023/03/01 22:39:37 by djonker \___)=(___/ */ +/* :::::::: */ +/* ftpfretint.c :+: :+: */ +/* +:+ */ +/* By: houtworm +#+ */ +/* +#+ */ +/* Created: 2023/10/26 18:40:57 by houtworm #+# #+# */ +/* Updated: 2023/10/26 18:40:58 by houtworm ######## odam.nl */ /* */ /* ************************************************************************** */ diff --git a/tests/src/ftpfretintstar.c b/tests/src/ftpfretintstar.c index 52f625c..2453b9d 100644 --- a/tests/src/ftpfretintstar.c +++ b/tests/src/ftpfretintstar.c @@ -1,12 +1,12 @@ /* ************************************************************************** */ /* */ -/* .--. _ */ -/* ftpfretint.c |o_o || | */ -/* |:_/ || |_ _ ___ __ */ -/* By: houtworm // \ \ __| | | \ \/ / */ -/* (| | )|_| |_| |> < */ -/* Created: 2023/02/25 17:07:23 by houtworm /'\_ _/`\__|\__,_/_/\_\ */ -/* Updated: 2023/03/01 22:39:37 by djonker \___)=(___/ */ +/* :::::::: */ +/* ftpfretintstar.c :+: :+: */ +/* +:+ */ +/* By: houtworm +#+ */ +/* +#+ */ +/* Created: 2023/10/26 18:41:01 by houtworm #+# #+# */ +/* Updated: 2023/10/26 18:41:01 by houtworm ######## odam.nl */ /* */ /* ************************************************************************** */ diff --git a/tests/src/ftpfretn.c b/tests/src/ftpfretn.c index d7fdf0d..c9b2763 100644 --- a/tests/src/ftpfretn.c +++ b/tests/src/ftpfretn.c @@ -1,12 +1,12 @@ /* ************************************************************************** */ /* */ -/* .--. _ */ -/* ftpfretn.c |o_o || | */ -/* |:_/ || |_ _ ___ __ */ -/* By: houtworm // \ \ __| | | \ \/ / */ -/* (| | )|_| |_| |> < */ -/* Created: 2023/02/25 17:07:23 by houtworm /'\_ _/`\__|\__,_/_/\_\ */ -/* Updated: 2023/03/01 22:39:41 by djonker \___)=(___/ */ +/* :::::::: */ +/* ftpfretn.c :+: :+: */ +/* +:+ */ +/* By: houtworm +#+ */ +/* +#+ */ +/* Created: 2023/10/26 18:41:04 by houtworm #+# #+# */ +/* Updated: 2023/10/26 18:41:05 by houtworm ######## odam.nl */ /* */ /* ************************************************************************** */ diff --git a/tests/src/ftpfretnullbasic.c b/tests/src/ftpfretnullbasic.c index d14a411..534cb8d 100644 --- a/tests/src/ftpfretnullbasic.c +++ b/tests/src/ftpfretnullbasic.c @@ -1,12 +1,12 @@ /* ************************************************************************** */ /* */ -/* .--. _ */ -/* ftpfretnullbasic.c |o_o || | */ -/* |:_/ || |_ _ ___ __ */ -/* By: houtworm // \ \ __| | | \ \/ / */ -/* (| | )|_| |_| |> < */ -/* Created: 2023/02/25 17:07:23 by houtworm /'\_ _/`\__|\__,_/_/\_\ */ -/* Updated: 2023/03/07 02:34:32 by houtworm \___)=(___/ */ +/* :::::::: */ +/* ftpfretnullbasic.c :+: :+: */ +/* +:+ */ +/* By: houtworm +#+ */ +/* +#+ */ +/* Created: 2023/10/26 18:41:08 by houtworm #+# #+# */ +/* Updated: 2023/10/26 18:41:08 by houtworm ######## odam.nl */ /* */ /* ************************************************************************** */ diff --git a/tests/src/ftpfretnullchar.c b/tests/src/ftpfretnullchar.c index 41dbc8b..e459307 100644 --- a/tests/src/ftpfretnullchar.c +++ b/tests/src/ftpfretnullchar.c @@ -1,12 +1,12 @@ /* ************************************************************************** */ /* */ -/* .--. _ */ -/* ftpfretnullchar.c |o_o || | */ -/* |:_/ || |_ _ ___ __ */ -/* By: houtworm // \ \ __| | | \ \/ / */ -/* (| | )|_| |_| |> < */ -/* Created: 2023/02/25 17:07:23 by houtworm /'\_ _/`\__|\__,_/_/\_\ */ -/* Updated: 2023/03/07 02:36:21 by houtworm \___)=(___/ */ +/* :::::::: */ +/* ftpfretnullchar.c :+: :+: */ +/* +:+ */ +/* By: houtworm +#+ */ +/* +#+ */ +/* Created: 2023/10/26 18:41:10 by houtworm #+# #+# */ +/* Updated: 2023/10/26 18:41:11 by houtworm ######## odam.nl */ /* */ /* ************************************************************************** */ diff --git a/tests/src/ftpfretnullpointer.c b/tests/src/ftpfretnullpointer.c index f3dc325..1e0d303 100644 --- a/tests/src/ftpfretnullpointer.c +++ b/tests/src/ftpfretnullpointer.c @@ -1,12 +1,12 @@ /* ************************************************************************** */ /* */ -/* .--. _ */ -/* ftpfretnullpointer.c |o_o || | */ -/* |:_/ || |_ _ ___ __ */ -/* By: houtworm // \ \ __| | | \ \/ / */ -/* (| | )|_| |_| |> < */ -/* Created: 2023/02/25 17:07:23 by houtworm /'\_ _/`\__|\__,_/_/\_\ */ -/* Updated: 2023/03/07 02:36:39 by houtworm \___)=(___/ */ +/* :::::::: */ +/* ftpfretnullpointer.c :+: :+: */ +/* +:+ */ +/* By: houtworm +#+ */ +/* +#+ */ +/* Created: 2023/10/26 18:41:13 by houtworm #+# #+# */ +/* Updated: 2023/10/26 18:41:14 by houtworm ######## odam.nl */ /* */ /* ************************************************************************** */ diff --git a/tests/src/ftpfretnullstr.c b/tests/src/ftpfretnullstr.c index 9c36f68..ab2fb73 100644 --- a/tests/src/ftpfretnullstr.c +++ b/tests/src/ftpfretnullstr.c @@ -1,12 +1,12 @@ /* ************************************************************************** */ /* */ -/* .--. _ */ -/* ftpfretnullstr.c |o_o || | */ -/* |:_/ || |_ _ ___ __ */ -/* By: houtworm // \ \ __| | | \ \/ / */ -/* (| | )|_| |_| |> < */ -/* Created: 2023/02/25 17:07:23 by houtworm /'\_ _/`\__|\__,_/_/\_\ */ -/* Updated: 2023/03/07 02:37:00 by houtworm \___)=(___/ */ +/* :::::::: */ +/* ftpfretnullstr.c :+: :+: */ +/* +:+ */ +/* By: houtworm +#+ */ +/* +#+ */ +/* Created: 2023/10/26 18:41:18 by houtworm #+# #+# */ +/* Updated: 2023/10/26 18:41:19 by houtworm ######## odam.nl */ /* */ /* ************************************************************************** */ diff --git a/tests/src/ftpfretstring.c b/tests/src/ftpfretstring.c index 534368d..3f69529 100644 --- a/tests/src/ftpfretstring.c +++ b/tests/src/ftpfretstring.c @@ -1,12 +1,12 @@ /* ************************************************************************** */ /* */ -/* .--. _ */ -/* ftpfretstring.c |o_o || | */ -/* |:_/ || |_ _ ___ __ */ -/* By: houtworm // \ \ __| | | \ \/ / */ -/* (| | )|_| |_| |> < */ -/* Created: 2023/02/25 17:07:23 by houtworm /'\_ _/`\__|\__,_/_/\_\ */ -/* Updated: 2023/03/01 22:39:47 by djonker \___)=(___/ */ +/* :::::::: */ +/* ftpfretstring.c :+: :+: */ +/* +:+ */ +/* By: houtworm +#+ */ +/* +#+ */ +/* Created: 2023/10/26 18:41:21 by houtworm #+# #+# */ +/* Updated: 2023/10/26 18:41:22 by houtworm ######## odam.nl */ /* */ /* ************************************************************************** */ diff --git a/tests/src/ftpfretstringstar.c b/tests/src/ftpfretstringstar.c index 32a5967..18d9a5a 100644 --- a/tests/src/ftpfretstringstar.c +++ b/tests/src/ftpfretstringstar.c @@ -1,12 +1,12 @@ /* ************************************************************************** */ /* */ -/* .--. _ */ -/* ftpfretstring.c |o_o || | */ -/* |:_/ || |_ _ ___ __ */ -/* By: houtworm // \ \ __| | | \ \/ / */ -/* (| | )|_| |_| |> < */ -/* Created: 2023/02/25 17:07:23 by houtworm /'\_ _/`\__|\__,_/_/\_\ */ -/* Updated: 2023/03/01 22:39:47 by djonker \___)=(___/ */ +/* :::::::: */ +/* ftpfretstringstar.c :+: :+: */ +/* +:+ */ +/* By: houtworm +#+ */ +/* +#+ */ +/* Created: 2023/10/26 18:41:26 by houtworm #+# #+# */ +/* Updated: 2023/10/26 18:41:26 by houtworm ######## odam.nl */ /* */ /* ************************************************************************** */ diff --git a/tests/src/outputpointer.c b/tests/src/outputpointer.c index f69c566..3d3165d 100644 --- a/tests/src/outputpointer.c +++ b/tests/src/outputpointer.c @@ -1,12 +1,12 @@ /* ************************************************************************** */ /* */ -/* .--. _ */ -/* outputpointer.c |o_o || | */ -/* |:_/ || |_ _ ___ __ */ -/* By: houtworm // \ \ __| | | \ \/ / */ -/* (| | )|_| |_| |> < */ -/* Created: 2023/02/25 17:07:23 by houtworm /'\_ _/`\__|\__,_/_/\_\ */ -/* Updated: 2023/03/01 22:39:54 by djonker \___)=(___/ */ +/* :::::::: */ +/* outputpointer.c :+: :+: */ +/* +:+ */ +/* By: houtworm +#+ */ +/* +#+ */ +/* Created: 2023/10/26 18:41:29 by houtworm #+# #+# */ +/* Updated: 2023/10/26 18:41:30 by houtworm ######## odam.nl */ /* */ /* ************************************************************************** */ diff --git a/tests/src/outputpointerstar.c b/tests/src/outputpointerstar.c index 85e431d..c46074e 100644 --- a/tests/src/outputpointerstar.c +++ b/tests/src/outputpointerstar.c @@ -1,12 +1,12 @@ /* ************************************************************************** */ /* */ -/* .--. _ */ -/* outputpointer.c |o_o || | */ -/* |:_/ || |_ _ ___ __ */ -/* By: houtworm // \ \ __| | | \ \/ / */ -/* (| | )|_| |_| |> < */ -/* Created: 2023/02/25 17:07:23 by houtworm /'\_ _/`\__|\__,_/_/\_\ */ -/* Updated: 2023/03/01 22:39:54 by djonker \___)=(___/ */ +/* :::::::: */ +/* outputpointerstar.c :+: :+: */ +/* +:+ */ +/* By: houtworm +#+ */ +/* +#+ */ +/* Created: 2023/10/26 18:41:33 by houtworm #+# #+# */ +/* Updated: 2023/10/26 18:41:33 by houtworm ######## odam.nl */ /* */ /* ************************************************************************** */ diff --git a/tests/src/realoutbasic.c b/tests/src/realoutbasic.c index 3371413..66e17aa 100644 --- a/tests/src/realoutbasic.c +++ b/tests/src/realoutbasic.c @@ -1,12 +1,12 @@ /* ************************************************************************** */ /* */ -/* .--. _ */ -/* realoutbasic.c |o_o || | */ -/* |:_/ || |_ _ ___ __ */ -/* By: houtworm // \ \ __| | | \ \/ / */ -/* (| | )|_| |_| |> < */ -/* Created: 2023/02/25 17:07:23 by houtworm /'\_ _/`\__|\__,_/_/\_\ */ -/* Updated: 2023/03/01 22:39:59 by djonker \___)=(___/ */ +/* :::::::: */ +/* realoutbasic.c :+: :+: */ +/* +:+ */ +/* By: houtworm +#+ */ +/* +#+ */ +/* Created: 2023/10/26 18:41:37 by houtworm #+# #+# */ +/* Updated: 2023/10/26 18:41:37 by houtworm ######## odam.nl */ /* */ /* ************************************************************************** */ diff --git a/tests/src/realoutchar.c b/tests/src/realoutchar.c index 285906b..ecfacbc 100644 --- a/tests/src/realoutchar.c +++ b/tests/src/realoutchar.c @@ -1,12 +1,12 @@ /* ************************************************************************** */ /* */ -/* .--. _ */ -/* realoutchar.c |o_o || | */ -/* |:_/ || |_ _ ___ __ */ -/* By: houtworm // \ \ __| | | \ \/ / */ -/* (| | )|_| |_| |> < */ -/* Created: 2023/02/25 17:07:23 by houtworm /'\_ _/`\__|\__,_/_/\_\ */ -/* Updated: 2023/02/26 05:36:22 by houtworm \___)=(___/ */ +/* :::::::: */ +/* realoutchar.c :+: :+: */ +/* +:+ */ +/* By: houtworm +#+ */ +/* +#+ */ +/* Created: 2023/10/26 18:41:40 by houtworm #+# #+# */ +/* Updated: 2023/10/26 18:41:40 by houtworm ######## odam.nl */ /* */ /* ************************************************************************** */ diff --git a/tests/src/realoutcharstar.c b/tests/src/realoutcharstar.c index 65886a8..82941c7 100644 --- a/tests/src/realoutcharstar.c +++ b/tests/src/realoutcharstar.c @@ -1,12 +1,12 @@ /* ************************************************************************** */ /* */ -/* .--. _ */ -/* realoutcharstar.c |o_o || | */ -/* |:_/ || |_ _ ___ __ */ -/* By: houtworm // \ \ __| | | \ \/ / */ -/* (| | )|_| |_| |> < */ -/* Created: 2023/02/25 17:07:23 by houtworm /'\_ _/`\__|\__,_/_/\_\ */ -/* Updated: 2023/03/05 22:55:21 by houtworm \___)=(___/ */ +/* :::::::: */ +/* realoutcharstar.c :+: :+: */ +/* +:+ */ +/* By: houtworm +#+ */ +/* +#+ */ +/* Created: 2023/10/26 18:41:43 by houtworm #+# #+# */ +/* Updated: 2023/10/26 18:41:43 by houtworm ######## odam.nl */ /* */ /* ************************************************************************** */ diff --git a/tests/src/realoutfloat.c b/tests/src/realoutfloat.c index e18b8e6..a79cb9a 100644 --- a/tests/src/realoutfloat.c +++ b/tests/src/realoutfloat.c @@ -1,12 +1,12 @@ /* ************************************************************************** */ /* */ -/* .--. _ */ -/* realoutint.c |o_o || | */ -/* |:_/ || |_ _ ___ __ */ -/* By: houtworm // \ \ __| | | \ \/ / */ -/* (| | )|_| |_| |> < */ -/* Created: 2023/02/25 17:07:23 by houtworm /'\_ _/`\__|\__,_/_/\_\ */ -/* Updated: 2023/02/26 05:42:19 by houtworm \___)=(___/ */ +/* :::::::: */ +/* realoutfloat.c :+: :+: */ +/* +:+ */ +/* By: houtworm +#+ */ +/* +#+ */ +/* Created: 2023/10/26 18:41:46 by houtworm #+# #+# */ +/* Updated: 2023/10/26 18:41:47 by houtworm ######## odam.nl */ /* */ /* ************************************************************************** */ diff --git a/tests/src/realoutfloatstar.c b/tests/src/realoutfloatstar.c index 0b16d56..5533abb 100644 --- a/tests/src/realoutfloatstar.c +++ b/tests/src/realoutfloatstar.c @@ -1,12 +1,12 @@ /* ************************************************************************** */ /* */ -/* .--. _ */ -/* realoutint.c |o_o || | */ -/* |:_/ || |_ _ ___ __ */ -/* By: houtworm // \ \ __| | | \ \/ / */ -/* (| | )|_| |_| |> < */ -/* Created: 2023/02/25 17:07:23 by houtworm /'\_ _/`\__|\__,_/_/\_\ */ -/* Updated: 2023/02/26 05:42:19 by houtworm \___)=(___/ */ +/* :::::::: */ +/* realoutfloatstar.c :+: :+: */ +/* +:+ */ +/* By: houtworm +#+ */ +/* +#+ */ +/* Created: 2023/10/26 18:41:50 by houtworm #+# #+# */ +/* Updated: 2023/10/26 18:41:50 by houtworm ######## odam.nl */ /* */ /* ************************************************************************** */ diff --git a/tests/src/realoutint.c b/tests/src/realoutint.c index 08ef1a1..99c6742 100644 --- a/tests/src/realoutint.c +++ b/tests/src/realoutint.c @@ -1,12 +1,12 @@ /* ************************************************************************** */ /* */ -/* .--. _ */ -/* realoutint.c |o_o || | */ -/* |:_/ || |_ _ ___ __ */ -/* By: houtworm // \ \ __| | | \ \/ / */ -/* (| | )|_| |_| |> < */ -/* Created: 2023/02/25 17:07:23 by houtworm /'\_ _/`\__|\__,_/_/\_\ */ -/* Updated: 2023/02/26 05:42:19 by houtworm \___)=(___/ */ +/* :::::::: */ +/* realoutint.c :+: :+: */ +/* +:+ */ +/* By: houtworm +#+ */ +/* +#+ */ +/* Created: 2023/10/26 18:41:53 by houtworm #+# #+# */ +/* Updated: 2023/10/26 18:41:53 by houtworm ######## odam.nl */ /* */ /* ************************************************************************** */ diff --git a/tests/src/realoutintstar.c b/tests/src/realoutintstar.c index 23a77e9..1bd3cb0 100644 --- a/tests/src/realoutintstar.c +++ b/tests/src/realoutintstar.c @@ -1,12 +1,12 @@ /* ************************************************************************** */ /* */ -/* .--. _ */ -/* realoutint.c |o_o || | */ -/* |:_/ || |_ _ ___ __ */ -/* By: houtworm // \ \ __| | | \ \/ / */ -/* (| | )|_| |_| |> < */ -/* Created: 2023/02/25 17:07:23 by houtworm /'\_ _/`\__|\__,_/_/\_\ */ -/* Updated: 2023/02/26 05:42:19 by houtworm \___)=(___/ */ +/* :::::::: */ +/* realoutintstar.c :+: :+: */ +/* +:+ */ +/* By: houtworm +#+ */ +/* +#+ */ +/* Created: 2023/10/26 18:41:56 by houtworm #+# #+# */ +/* Updated: 2023/10/26 18:41:56 by houtworm ######## odam.nl */ /* */ /* ************************************************************************** */ diff --git a/tests/src/realoutn.c b/tests/src/realoutn.c index 3809901..4f5bc5b 100644 --- a/tests/src/realoutn.c +++ b/tests/src/realoutn.c @@ -1,12 +1,12 @@ /* ************************************************************************** */ /* */ -/* .--. _ */ -/* realoutn.c |o_o || | */ -/* |:_/ || |_ _ ___ __ */ -/* By: houtworm // \ \ __| | | \ \/ / */ -/* (| | )|_| |_| |> < */ -/* Created: 2023/02/25 17:07:23 by houtworm /'\_ _/`\__|\__,_/_/\_\ */ -/* Updated: 2023/02/27 06:42:45 by houtworm \___)=(___/ */ +/* :::::::: */ +/* realoutn.c :+: :+: */ +/* +:+ */ +/* By: houtworm +#+ */ +/* +#+ */ +/* Created: 2023/10/26 18:41:59 by houtworm #+# #+# */ +/* Updated: 2023/10/26 18:42:00 by houtworm ######## odam.nl */ /* */ /* ************************************************************************** */ diff --git a/tests/src/realoutnullbasic.c b/tests/src/realoutnullbasic.c index 9e3c50b..b8f6548 100644 --- a/tests/src/realoutnullbasic.c +++ b/tests/src/realoutnullbasic.c @@ -1,12 +1,12 @@ /* ************************************************************************** */ /* */ -/* .--. _ */ -/* realoutnullbasic.c |o_o || | */ -/* |:_/ || |_ _ ___ __ */ -/* By: houtworm // \ \ __| | | \ \/ / */ -/* (| | )|_| |_| |> < */ -/* Created: 2023/02/25 17:07:23 by houtworm /'\_ _/`\__|\__,_/_/\_\ */ -/* Updated: 2023/03/07 02:38:01 by houtworm \___)=(___/ */ +/* :::::::: */ +/* realoutnullbasic.c :+: :+: */ +/* +:+ */ +/* By: houtworm +#+ */ +/* +#+ */ +/* Created: 2023/10/26 18:42:02 by houtworm #+# #+# */ +/* Updated: 2023/10/26 18:42:03 by houtworm ######## odam.nl */ /* */ /* ************************************************************************** */ diff --git a/tests/src/realoutnullchar.c b/tests/src/realoutnullchar.c index 69bcfa4..93dd510 100644 --- a/tests/src/realoutnullchar.c +++ b/tests/src/realoutnullchar.c @@ -1,12 +1,12 @@ /* ************************************************************************** */ /* */ -/* .--. _ */ -/* realoutnullchar.c |o_o || | */ -/* |:_/ || |_ _ ___ __ */ -/* By: houtworm // \ \ __| | | \ \/ / */ -/* (| | )|_| |_| |> < */ -/* Created: 2023/02/25 17:07:23 by houtworm /'\_ _/`\__|\__,_/_/\_\ */ -/* Updated: 2023/03/07 02:38:19 by houtworm \___)=(___/ */ +/* :::::::: */ +/* realoutnullchar.c :+: :+: */ +/* +:+ */ +/* By: houtworm +#+ */ +/* +#+ */ +/* Created: 2023/10/26 18:42:05 by houtworm #+# #+# */ +/* Updated: 2023/10/26 18:42:05 by houtworm ######## odam.nl */ /* */ /* ************************************************************************** */ diff --git a/tests/src/realoutnullpointer.c b/tests/src/realoutnullpointer.c index ce6e1bd..69662a6 100644 --- a/tests/src/realoutnullpointer.c +++ b/tests/src/realoutnullpointer.c @@ -1,12 +1,12 @@ /* ************************************************************************** */ /* */ -/* .--. _ */ -/* realoutnullpointer.c |o_o || | */ -/* |:_/ || |_ _ ___ __ */ -/* By: houtworm // \ \ __| | | \ \/ / */ -/* (| | )|_| |_| |> < */ -/* Created: 2023/02/25 17:07:23 by houtworm /'\_ _/`\__|\__,_/_/\_\ */ -/* Updated: 2023/03/07 02:38:34 by houtworm \___)=(___/ */ +/* :::::::: */ +/* realoutnullpointer.c :+: :+: */ +/* +:+ */ +/* By: houtworm +#+ */ +/* +#+ */ +/* Created: 2023/10/26 18:42:09 by houtworm #+# #+# */ +/* Updated: 2023/10/26 18:42:10 by houtworm ######## odam.nl */ /* */ /* ************************************************************************** */ diff --git a/tests/src/realoutnullstr.c b/tests/src/realoutnullstr.c index f1b4aff..ab66d29 100644 --- a/tests/src/realoutnullstr.c +++ b/tests/src/realoutnullstr.c @@ -1,12 +1,12 @@ /* ************************************************************************** */ /* */ -/* .--. _ */ -/* realoutnullstr.c |o_o || | */ -/* |:_/ || |_ _ ___ __ */ -/* By: houtworm // \ \ __| | | \ \/ / */ -/* (| | )|_| |_| |> < */ -/* Created: 2023/02/25 17:07:23 by houtworm /'\_ _/`\__|\__,_/_/\_\ */ -/* Updated: 2023/03/07 02:38:46 by houtworm \___)=(___/ */ +/* :::::::: */ +/* realoutnullstr.c :+: :+: */ +/* +:+ */ +/* By: houtworm +#+ */ +/* +#+ */ +/* Created: 2023/10/26 18:42:13 by houtworm #+# #+# */ +/* Updated: 2023/10/26 18:42:14 by houtworm ######## odam.nl */ /* */ /* ************************************************************************** */ diff --git a/tests/src/realoutstring.c b/tests/src/realoutstring.c index e5e2c46..9f0c4a1 100644 --- a/tests/src/realoutstring.c +++ b/tests/src/realoutstring.c @@ -1,12 +1,12 @@ /* ************************************************************************** */ /* */ -/* .--. _ */ -/* realoutstring.c |o_o || | */ -/* |:_/ || |_ _ ___ __ */ -/* By: houtworm // \ \ __| | | \ \/ / */ -/* (| | )|_| |_| |> < */ -/* Created: 2023/02/25 17:07:23 by houtworm /'\_ _/`\__|\__,_/_/\_\ */ -/* Updated: 2023/02/25 17:27:34 by houtworm \___)=(___/ */ +/* :::::::: */ +/* realoutstring.c :+: :+: */ +/* +:+ */ +/* By: houtworm +#+ */ +/* +#+ */ +/* Created: 2023/10/26 18:42:17 by houtworm #+# #+# */ +/* Updated: 2023/10/26 18:42:17 by houtworm ######## odam.nl */ /* */ /* ************************************************************************** */ diff --git a/tests/src/realoutstringstar.c b/tests/src/realoutstringstar.c index 2ac8a5b..b01b2f3 100644 --- a/tests/src/realoutstringstar.c +++ b/tests/src/realoutstringstar.c @@ -1,12 +1,12 @@ /* ************************************************************************** */ /* */ -/* .--. _ */ -/* realoutstring.c |o_o || | */ -/* |:_/ || |_ _ ___ __ */ -/* By: houtworm // \ \ __| | | \ \/ / */ -/* (| | )|_| |_| |> < */ -/* Created: 2023/02/25 17:07:23 by houtworm /'\_ _/`\__|\__,_/_/\_\ */ -/* Updated: 2023/02/25 17:27:34 by houtworm \___)=(___/ */ +/* :::::::: */ +/* realoutstringstar.c :+: :+: */ +/* +:+ */ +/* By: houtworm +#+ */ +/* +#+ */ +/* Created: 2023/10/26 18:42:19 by houtworm #+# #+# */ +/* Updated: 2023/10/26 18:42:20 by houtworm ######## odam.nl */ /* */ /* ************************************************************************** */ diff --git a/tests/src/realretbasic.c b/tests/src/realretbasic.c index 3806f3f..c335566 100644 --- a/tests/src/realretbasic.c +++ b/tests/src/realretbasic.c @@ -1,12 +1,12 @@ /* ************************************************************************** */ /* */ -/* .--. _ */ -/* realretbasic.c |o_o || | */ -/* |:_/ || |_ _ ___ __ */ -/* By: houtworm // \ \ __| | | \ \/ / */ -/* (| | )|_| |_| |> < */ -/* Created: 2023/02/25 17:07:23 by houtworm /'\_ _/`\__|\__,_/_/\_\ */ -/* Updated: 2023/02/25 18:55:33 by houtworm \___)=(___/ */ +/* :::::::: */ +/* realretbasic.c :+: :+: */ +/* +:+ */ +/* By: houtworm +#+ */ +/* +#+ */ +/* Created: 2023/10/26 18:42:23 by houtworm #+# #+# */ +/* Updated: 2023/10/26 18:42:23 by houtworm ######## odam.nl */ /* */ /* ************************************************************************** */ diff --git a/tests/src/realretchar.c b/tests/src/realretchar.c index 63c6ae0..e23d488 100644 --- a/tests/src/realretchar.c +++ b/tests/src/realretchar.c @@ -1,12 +1,12 @@ /* ************************************************************************** */ /* */ -/* .--. _ */ -/* realretchar.c |o_o || | */ -/* |:_/ || |_ _ ___ __ */ -/* By: houtworm // \ \ __| | | \ \/ / */ -/* (| | )|_| |_| |> < */ -/* Created: 2023/02/25 17:07:23 by houtworm /'\_ _/`\__|\__,_/_/\_\ */ -/* Updated: 2023/02/25 18:55:46 by houtworm \___)=(___/ */ +/* :::::::: */ +/* realretchar.c :+: :+: */ +/* +:+ */ +/* By: houtworm +#+ */ +/* +#+ */ +/* Created: 2023/10/26 18:42:26 by houtworm #+# #+# */ +/* Updated: 2023/10/26 18:42:27 by houtworm ######## odam.nl */ /* */ /* ************************************************************************** */ diff --git a/tests/src/realretcharstar.c b/tests/src/realretcharstar.c index a54a386..36a501d 100644 --- a/tests/src/realretcharstar.c +++ b/tests/src/realretcharstar.c @@ -1,12 +1,12 @@ /* ************************************************************************** */ /* */ -/* .--. _ */ -/* realretcharstar.c |o_o || | */ -/* |:_/ || |_ _ ___ __ */ -/* By: houtworm // \ \ __| | | \ \/ / */ -/* (| | )|_| |_| |> < */ -/* Created: 2023/02/25 17:07:23 by houtworm /'\_ _/`\__|\__,_/_/\_\ */ -/* Updated: 2023/03/05 22:55:28 by houtworm \___)=(___/ */ +/* :::::::: */ +/* realretcharstar.c :+: :+: */ +/* +:+ */ +/* By: houtworm +#+ */ +/* +#+ */ +/* Created: 2023/10/26 18:42:30 by houtworm #+# #+# */ +/* Updated: 2023/10/26 18:42:30 by houtworm ######## odam.nl */ /* */ /* ************************************************************************** */ diff --git a/tests/src/realretfloat.c b/tests/src/realretfloat.c index 58850c2..be61fa4 100644 --- a/tests/src/realretfloat.c +++ b/tests/src/realretfloat.c @@ -1,12 +1,12 @@ /* ************************************************************************** */ /* */ -/* .--. _ */ -/* realretint.c |o_o || | */ -/* |:_/ || |_ _ ___ __ */ -/* By: houtworm // \ \ __| | | \ \/ / */ -/* (| | )|_| |_| |> < */ -/* Created: 2023/02/25 17:07:23 by houtworm /'\_ _/`\__|\__,_/_/\_\ */ -/* Updated: 2023/02/26 05:42:24 by houtworm \___)=(___/ */ +/* :::::::: */ +/* realretfloat.c :+: :+: */ +/* +:+ */ +/* By: houtworm +#+ */ +/* +#+ */ +/* Created: 2023/10/26 18:42:33 by houtworm #+# #+# */ +/* Updated: 2023/10/26 18:42:33 by houtworm ######## odam.nl */ /* */ /* ************************************************************************** */ diff --git a/tests/src/realretfloatstar.c b/tests/src/realretfloatstar.c index a221482..42cc65c 100644 --- a/tests/src/realretfloatstar.c +++ b/tests/src/realretfloatstar.c @@ -1,12 +1,12 @@ /* ************************************************************************** */ /* */ -/* .--. _ */ -/* realretint.c |o_o || | */ -/* |:_/ || |_ _ ___ __ */ -/* By: houtworm // \ \ __| | | \ \/ / */ -/* (| | )|_| |_| |> < */ -/* Created: 2023/02/25 17:07:23 by houtworm /'\_ _/`\__|\__,_/_/\_\ */ -/* Updated: 2023/02/26 05:42:24 by houtworm \___)=(___/ */ +/* :::::::: */ +/* realretfloatstar.c :+: :+: */ +/* +:+ */ +/* By: houtworm +#+ */ +/* +#+ */ +/* Created: 2023/10/26 18:42:36 by houtworm #+# #+# */ +/* Updated: 2023/10/26 18:42:36 by houtworm ######## odam.nl */ /* */ /* ************************************************************************** */ diff --git a/tests/src/realretint.c b/tests/src/realretint.c index d53f9b7..6ae7f07 100644 --- a/tests/src/realretint.c +++ b/tests/src/realretint.c @@ -1,12 +1,12 @@ /* ************************************************************************** */ /* */ -/* .--. _ */ -/* realretint.c |o_o || | */ -/* |:_/ || |_ _ ___ __ */ -/* By: houtworm // \ \ __| | | \ \/ / */ -/* (| | )|_| |_| |> < */ -/* Created: 2023/02/25 17:07:23 by houtworm /'\_ _/`\__|\__,_/_/\_\ */ -/* Updated: 2023/02/26 05:42:24 by houtworm \___)=(___/ */ +/* :::::::: */ +/* realretint.c :+: :+: */ +/* +:+ */ +/* By: houtworm +#+ */ +/* +#+ */ +/* Created: 2023/10/26 18:42:39 by houtworm #+# #+# */ +/* Updated: 2023/10/26 18:42:39 by houtworm ######## odam.nl */ /* */ /* ************************************************************************** */ diff --git a/tests/src/realretintstar.c b/tests/src/realretintstar.c index 150d80d..f7e9742 100644 --- a/tests/src/realretintstar.c +++ b/tests/src/realretintstar.c @@ -1,12 +1,12 @@ /* ************************************************************************** */ /* */ -/* .--. _ */ -/* realretint.c |o_o || | */ -/* |:_/ || |_ _ ___ __ */ -/* By: houtworm // \ \ __| | | \ \/ / */ -/* (| | )|_| |_| |> < */ -/* Created: 2023/02/25 17:07:23 by houtworm /'\_ _/`\__|\__,_/_/\_\ */ -/* Updated: 2023/02/26 05:42:24 by houtworm \___)=(___/ */ +/* :::::::: */ +/* realretintstar.c :+: :+: */ +/* +:+ */ +/* By: houtworm +#+ */ +/* +#+ */ +/* Created: 2023/10/26 18:42:41 by houtworm #+# #+# */ +/* Updated: 2023/10/26 18:42:42 by houtworm ######## odam.nl */ /* */ /* ************************************************************************** */ diff --git a/tests/src/realretn.c b/tests/src/realretn.c index 5f92917..0002471 100644 --- a/tests/src/realretn.c +++ b/tests/src/realretn.c @@ -1,12 +1,12 @@ /* ************************************************************************** */ /* */ -/* .--. _ */ -/* realretn.c |o_o || | */ -/* |:_/ || |_ _ ___ __ */ -/* By: houtworm // \ \ __| | | \ \/ / */ -/* (| | )|_| |_| |> < */ -/* Created: 2023/02/25 17:07:23 by houtworm /'\_ _/`\__|\__,_/_/\_\ */ -/* Updated: 2023/02/27 06:42:52 by houtworm \___)=(___/ */ +/* :::::::: */ +/* realretn.c :+: :+: */ +/* +:+ */ +/* By: houtworm +#+ */ +/* +#+ */ +/* Created: 2023/10/26 18:42:46 by houtworm #+# #+# */ +/* Updated: 2023/10/26 18:42:46 by houtworm ######## odam.nl */ /* */ /* ************************************************************************** */ diff --git a/tests/src/realretnullbasic.c b/tests/src/realretnullbasic.c index b990bc8..f959aef 100644 --- a/tests/src/realretnullbasic.c +++ b/tests/src/realretnullbasic.c @@ -1,12 +1,12 @@ /* ************************************************************************** */ /* */ -/* .--. _ */ -/* realretnullbasic.c |o_o || | */ -/* |:_/ || |_ _ ___ __ */ -/* By: houtworm // \ \ __| | | \ \/ / */ -/* (| | )|_| |_| |> < */ -/* Created: 2023/02/25 17:07:23 by houtworm /'\_ _/`\__|\__,_/_/\_\ */ -/* Updated: 2023/03/07 02:39:16 by houtworm \___)=(___/ */ +/* :::::::: */ +/* realretnullbasic.c :+: :+: */ +/* +:+ */ +/* By: houtworm +#+ */ +/* +#+ */ +/* Created: 2023/10/26 18:42:49 by houtworm #+# #+# */ +/* Updated: 2023/10/26 18:42:49 by houtworm ######## odam.nl */ /* */ /* ************************************************************************** */ diff --git a/tests/src/realretnullchar.c b/tests/src/realretnullchar.c index ffc4be6..442178b 100644 --- a/tests/src/realretnullchar.c +++ b/tests/src/realretnullchar.c @@ -1,12 +1,12 @@ /* ************************************************************************** */ /* */ -/* .--. _ */ -/* realretnullchar.c |o_o || | */ -/* |:_/ || |_ _ ___ __ */ -/* By: houtworm // \ \ __| | | \ \/ / */ -/* (| | )|_| |_| |> < */ -/* Created: 2023/02/25 17:07:23 by houtworm /'\_ _/`\__|\__,_/_/\_\ */ -/* Updated: 2023/03/07 02:39:33 by houtworm \___)=(___/ */ +/* :::::::: */ +/* realretnullchar.c :+: :+: */ +/* +:+ */ +/* By: houtworm +#+ */ +/* +#+ */ +/* Created: 2023/10/26 18:42:52 by houtworm #+# #+# */ +/* Updated: 2023/10/26 18:42:52 by houtworm ######## odam.nl */ /* */ /* ************************************************************************** */ diff --git a/tests/src/realretnullpointer.c b/tests/src/realretnullpointer.c index ca2d788..f97b17a 100644 --- a/tests/src/realretnullpointer.c +++ b/tests/src/realretnullpointer.c @@ -1,12 +1,12 @@ /* ************************************************************************** */ /* */ -/* .--. _ */ -/* realretnullpointer.c |o_o || | */ -/* |:_/ || |_ _ ___ __ */ -/* By: houtworm // \ \ __| | | \ \/ / */ -/* (| | )|_| |_| |> < */ -/* Created: 2023/02/25 17:07:23 by houtworm /'\_ _/`\__|\__,_/_/\_\ */ -/* Updated: 2023/03/07 02:40:04 by houtworm \___)=(___/ */ +/* :::::::: */ +/* realretnullpointer.c :+: :+: */ +/* +:+ */ +/* By: houtworm +#+ */ +/* +#+ */ +/* Created: 2023/10/26 18:42:55 by houtworm #+# #+# */ +/* Updated: 2023/10/26 18:42:55 by houtworm ######## odam.nl */ /* */ /* ************************************************************************** */ diff --git a/tests/src/realretnullstr.c b/tests/src/realretnullstr.c index f9396d2..a048e70 100644 --- a/tests/src/realretnullstr.c +++ b/tests/src/realretnullstr.c @@ -1,12 +1,12 @@ /* ************************************************************************** */ /* */ -/* .--. _ */ -/* realretnullstr.c |o_o || | */ -/* |:_/ || |_ _ ___ __ */ -/* By: houtworm // \ \ __| | | \ \/ / */ -/* (| | )|_| |_| |> < */ -/* Created: 2023/02/25 17:07:23 by houtworm /'\_ _/`\__|\__,_/_/\_\ */ -/* Updated: 2023/03/07 02:40:17 by houtworm \___)=(___/ */ +/* :::::::: */ +/* realretnullstr.c :+: :+: */ +/* +:+ */ +/* By: houtworm +#+ */ +/* +#+ */ +/* Created: 2023/10/26 18:42:58 by houtworm #+# #+# */ +/* Updated: 2023/10/26 18:42:58 by houtworm ######## odam.nl */ /* */ /* ************************************************************************** */ diff --git a/tests/src/realretstring.c b/tests/src/realretstring.c index 67fafae..f99fe08 100644 --- a/tests/src/realretstring.c +++ b/tests/src/realretstring.c @@ -1,12 +1,12 @@ /* ************************************************************************** */ /* */ -/* .--. _ */ -/* realretstring.c |o_o || | */ -/* |:_/ || |_ _ ___ __ */ -/* By: houtworm // \ \ __| | | \ \/ / */ -/* (| | )|_| |_| |> < */ -/* Created: 2023/02/25 17:07:23 by houtworm /'\_ _/`\__|\__,_/_/\_\ */ -/* Updated: 2023/02/25 18:55:46 by houtworm \___)=(___/ */ +/* :::::::: */ +/* realretstring.c :+: :+: */ +/* +:+ */ +/* By: houtworm +#+ */ +/* +#+ */ +/* Created: 2023/10/26 18:43:01 by houtworm #+# #+# */ +/* Updated: 2023/10/26 18:43:01 by houtworm ######## odam.nl */ /* */ /* ************************************************************************** */ diff --git a/tests/src/realretstringstar.c b/tests/src/realretstringstar.c index 7864aa4..1cd2187 100644 --- a/tests/src/realretstringstar.c +++ b/tests/src/realretstringstar.c @@ -1,12 +1,12 @@ /* ************************************************************************** */ /* */ -/* .--. _ */ -/* realretstring.c |o_o || | */ -/* |:_/ || |_ _ ___ __ */ -/* By: houtworm // \ \ __| | | \ \/ / */ -/* (| | )|_| |_| |> < */ -/* Created: 2023/02/25 17:07:23 by houtworm /'\_ _/`\__|\__,_/_/\_\ */ -/* Updated: 2023/02/25 18:55:46 by houtworm \___)=(___/ */ +/* :::::::: */ +/* realretstringstar.c :+: :+: */ +/* +:+ */ +/* By: houtworm +#+ */ +/* +#+ */ +/* Created: 2023/10/26 18:43:04 by houtworm #+# #+# */ +/* Updated: 2023/10/26 18:43:05 by houtworm ######## odam.nl */ /* */ /* ************************************************************************** */ diff --git a/tests/src/returnpointer.c b/tests/src/returnpointer.c index 3cf78bd..facc6fd 100644 --- a/tests/src/returnpointer.c +++ b/tests/src/returnpointer.c @@ -1,12 +1,12 @@ /* ************************************************************************** */ /* */ -/* .--. _ */ -/* returnpointer.c |o_o || | */ -/* |:_/ || |_ _ ___ __ */ -/* By: houtworm // \ \ __| | | \ \/ / */ -/* (| | )|_| |_| |> < */ -/* Created: 2023/02/25 17:07:23 by houtworm /'\_ _/`\__|\__,_/_/\_\ */ -/* Updated: 2023/03/01 22:40:17 by djonker \___)=(___/ */ +/* :::::::: */ +/* returnpointer.c :+: :+: */ +/* +:+ */ +/* By: houtworm +#+ */ +/* +#+ */ +/* Created: 2023/10/26 18:43:07 by houtworm #+# #+# */ +/* Updated: 2023/10/26 18:43:07 by houtworm ######## odam.nl */ /* */ /* ************************************************************************** */ diff --git a/tests/src/returnpointerstar.c b/tests/src/returnpointerstar.c index ca810d5..d4797f7 100644 --- a/tests/src/returnpointerstar.c +++ b/tests/src/returnpointerstar.c @@ -1,12 +1,12 @@ /* ************************************************************************** */ /* */ -/* .--. _ */ -/* returnpointer.c |o_o || | */ -/* |:_/ || |_ _ ___ __ */ -/* By: houtworm // \ \ __| | | \ \/ / */ -/* (| | )|_| |_| |> < */ -/* Created: 2023/02/25 17:07:23 by houtworm /'\_ _/`\__|\__,_/_/\_\ */ -/* Updated: 2023/03/01 22:40:17 by djonker \___)=(___/ */ +/* :::::::: */ +/* returnpointerstar.c :+: :+: */ +/* +:+ */ +/* By: houtworm +#+ */ +/* +#+ */ +/* Created: 2023/10/26 18:43:10 by houtworm #+# #+# */ +/* Updated: 2023/10/26 18:43:10 by houtworm ######## odam.nl */ /* */ /* ************************************************************************** */