From 8046561c71e6139de3365bd9d3c3f2b25df899f9 Mon Sep 17 00:00:00 2001 From: djonker Date: Thu, 26 Oct 2023 18:58:33 +0200 Subject: [PATCH] updated headers --- getnextline/.gitignore | 8 -------- getnextline/Makefile | 6 +++--- getnextline/Readme.md | 22 ++++++++++++++++++++++ getnextline/get_next_line.h | 9 ++++----- getnextline/src/get_next_line.c | 8 ++++---- getnextline/src/get_next_line_utils.c | 8 ++++---- getnextline/test.sh | 6 +++--- getnextline/tests/src/new/maina.c | 8 ++++---- getnextline/tests/src/new/mainb.c | 8 ++++---- getnextline/tests/src/new/mainc.c | 8 ++++---- getnextline/tests/src/new/maind.c | 8 ++++---- getnextline/tests/src/new/maine.c | 8 ++++---- getnextline/tests/src/new/mainf.c | 8 ++++---- getnextline/tests/src/new/maing.c | 8 ++++---- getnextline/tests/src/old/maina.c | 8 ++++---- getnextline/tests/src/old/mainb.c | 8 ++++---- getnextline/tests/src/old/mainc.c | 8 ++++---- getnextline/tests/src/old/maind.c | 8 ++++---- getnextline/tests/src/old/maine.c | 8 ++++---- getnextline/tests/src/old/mainf.c | 8 ++++---- getnextline/tests/src/old/maing.c | 8 ++++---- pipex.h | 14 +++++++------- src/bonus/error.c | 14 +++++++------- src/bonus/init.c | 14 +++++++------- src/bonus/pipex.c | 14 +++++++------- src/mandatory/error.c | 14 +++++++------- src/mandatory/init.c | 14 +++++++------- src/mandatory/pipex.c | 14 +++++++------- 28 files changed, 145 insertions(+), 132 deletions(-) delete mode 100644 getnextline/.gitignore create mode 100644 getnextline/Readme.md diff --git a/getnextline/.gitignore b/getnextline/.gitignore deleted file mode 100644 index ef433d8..0000000 --- a/getnextline/.gitignore +++ /dev/null @@ -1,8 +0,0 @@ -*.pdf -*.o -*.a -LICENSE -obj -tests/tmp -.git -.ccls-cache diff --git a/getnextline/Makefile b/getnextline/Makefile index 3a420e5..201f8a5 100644 --- a/getnextline/Makefile +++ b/getnextline/Makefile @@ -1,12 +1,12 @@ # **************************************************************************** # # # # .--. _ # -# Makefile |o_o || | # +# Makefile :+: :+: # # |:_/ || |_ _ ___ __ # # By: djonker // \ \ __| | | \ \/ / # # (| | )|_| |_| |> < # # Created: 2021/05/27 01:24:02 by djonker /'\_ _/`\__|\__,_/_/\_\ # -# Updated: 2023/02/20 20:37:06 by houtworm \___)=(___/ # +# Updated: 2023/10/26 18:00:26 by houtworm ######## odam.nl # # # # **************************************************************************** # @@ -33,7 +33,7 @@ fclean: clean re: fclean all -$(OBJ): $(SRC) +$(OBJ): $(SRC) get_next_line.h Makefile @mkdir -p $(dir $@) @printf "\e[1;34mBuilding $@\n\e[0;00m" @$(CC) $(CFLAGS) -c $(@:obj/%.o=src/%.c) -o $@ diff --git a/getnextline/Readme.md b/getnextline/Readme.md new file mode 100644 index 0000000..8641ddd --- /dev/null +++ b/getnextline/Readme.md @@ -0,0 +1,22 @@ +# Project Name +Get Next Line is a very handy function that keeps feeding you the next line of a file descriptor + +--- +## Todo +#### Remove the struct for some extra speed + +--- +## Usage +1. Simply clone or download the repository +2. Run `make` in the cloned directory +3. You can include the get_next_line.a into your own programs + +--- +## Tester +#### Usage +1. Download test.sh and the tests folder to your GNL directory +2. Make the file executable `chmod +x test.sh` +3. Run `./test.sh` to start the test + +--- +[This project is part of the studies at 42](https://42.fr/en/homepage/) diff --git a/getnextline/get_next_line.h b/getnextline/get_next_line.h index 1a4391a..5db3fa8 100644 --- a/getnextline/get_next_line.h +++ b/getnextline/get_next_line.h @@ -1,19 +1,18 @@ /* ************************************************************************** */ /* */ /* :::::::: */ -/* get_next_line.h |o_o || | */ +/* get_next_line.h :+: :+: */ /* +:+ */ -/* By: djonker +#+ */ +/* By: houtworm +#+ */ /* +#+ */ -/* Created: 2020/12/19 06:09:11 by djonker #+# #+# */ -/* Updated: 2021/05/27 03:41:54 by djonker \___)=(___/ */ +/* Created: 2023/10/26 18:51:25 by houtworm #+# #+# */ +/* Updated: 2023/10/26 18:51:26 by houtworm ######## odam.nl */ /* */ /* ************************************************************************** */ #ifndef GET_NEXT_LINE_H # define GET_NEXT_LINE_H -# include "get_next_line.h" # include # include # include diff --git a/getnextline/src/get_next_line.c b/getnextline/src/get_next_line.c index 2a0721d..39f389a 100644 --- a/getnextline/src/get_next_line.c +++ b/getnextline/src/get_next_line.c @@ -1,12 +1,12 @@ /* ************************************************************************** */ /* */ /* :::::::: */ -/* get_next_line.c |o_o || | */ +/* get_next_line.c :+: :+: */ /* +:+ */ -/* By: djonker +#+ */ +/* By: houtworm +#+ */ /* +#+ */ -/* Created: 2021/03/15 22:51:05 by djonker #+# #+# */ -/* Updated: 2023/02/20 20:32:05 by houtworm \___)=(___/ */ +/* Created: 2023/10/26 18:52:17 by houtworm #+# #+# */ +/* Updated: 2023/10/26 18:52:18 by houtworm ######## odam.nl */ /* */ /* ************************************************************************** */ diff --git a/getnextline/src/get_next_line_utils.c b/getnextline/src/get_next_line_utils.c index 5cd3a74..85ad1aa 100644 --- a/getnextline/src/get_next_line_utils.c +++ b/getnextline/src/get_next_line_utils.c @@ -1,12 +1,12 @@ /* ************************************************************************** */ /* */ /* :::::::: */ -/* get_next_line_utils.c :+: :+: :+: */ +/* get_next_line_utils.c :+: :+: */ /* +:+ */ -/* By: djonker +#+ */ +/* By: houtworm +#+ */ /* +#+ */ -/* Created: 2021/04/05 07:45:24 by djonker #+# #+# */ -/* Updated: 2023/02/07 00:54:10 by houtworm ### ########.fr */ +/* Created: 2023/10/26 18:52:21 by houtworm #+# #+# */ +/* Updated: 2023/10/26 18:52:21 by houtworm ######## odam.nl */ /* */ /* ************************************************************************** */ diff --git a/getnextline/test.sh b/getnextline/test.sh index d0f1f68..4dd6fa3 100755 --- a/getnextline/test.sh +++ b/getnextline/test.sh @@ -6,7 +6,7 @@ # By: houtworm // \ \ __| | | \ \/ / # # (| | )|_| |_| |> < # # Created: 2023/02/20 12:46:46 by houtworm /'\_ _/`\__|\__,_/_/\_\ # -# Updated: 2023/03/06 09:04:17 by houtworm \___)=(___/ # +# Updated: 2023/03/11 08:07:29 by houtworm \___)=(___/ # # # # **************************************************************************** # @@ -25,7 +25,7 @@ then else printf "\n\e[1;31mInstall Valgrind for extra Memory Checking\e[0;00m\n" fi -HEADLOC=$(find ./ -name '*line.h' | grep -v tests) +HEADLOC=$(find ./ -name '*line.h' | grep -v tests | grep -v ccls) mkdir -p tests/tmp cp $HEADLOC tests/tmp/get_next_line.h if [ $1 == "old" ] @@ -163,7 +163,7 @@ relinkcheck() # Test 1 printf "\e[1;36mTest 1 Checking all source with Norminette\e[0;00m\n" -norminette $(find ./ -name '*.[ch]' | grep -v ./tests/) > tests/tmp/norm +norminette $(find ./ -name '*.[ch]' | grep -v ./tests/ | grep -v ccls) > tests/tmp/norm if [ $? -eq 1 ] then printf "\e[1;31mYour shit is not norm!\e[0;00m\n" diff --git a/getnextline/tests/src/new/maina.c b/getnextline/tests/src/new/maina.c index 54cb948..a07dde7 100644 --- a/getnextline/tests/src/new/maina.c +++ b/getnextline/tests/src/new/maina.c @@ -1,12 +1,12 @@ /* ************************************************************************** */ /* */ /* :::::::: */ -/* maina.c |o_o || | */ +/* maina.c :+: :+: */ /* +:+ */ -/* By: djonker +#+ */ +/* By: houtworm +#+ */ /* +#+ */ -/* Created: 2021/02/15 03:43:05 by djonker #+# #+# */ -/* Updated: 2023/02/21 00:36:49 by houtworm \___)=(___/ */ +/* Created: 2023/10/26 18:52:45 by houtworm #+# #+# */ +/* Updated: 2023/10/26 18:52:45 by houtworm ######## odam.nl */ /* */ /* ************************************************************************** */ diff --git a/getnextline/tests/src/new/mainb.c b/getnextline/tests/src/new/mainb.c index a573138..b98ebd2 100644 --- a/getnextline/tests/src/new/mainb.c +++ b/getnextline/tests/src/new/mainb.c @@ -1,12 +1,12 @@ /* ************************************************************************** */ /* */ /* :::::::: */ -/* mainb.c |o_o || | */ +/* mainb.c :+: :+: */ /* +:+ */ -/* By: djonker +#+ */ +/* By: houtworm +#+ */ /* +#+ */ -/* Created: 2021/02/15 03:43:05 by djonker #+# #+# */ -/* Updated: 2023/02/21 00:36:03 by houtworm \___)=(___/ */ +/* Created: 2023/10/26 18:52:48 by houtworm #+# #+# */ +/* Updated: 2023/10/26 18:52:48 by houtworm ######## odam.nl */ /* */ /* ************************************************************************** */ diff --git a/getnextline/tests/src/new/mainc.c b/getnextline/tests/src/new/mainc.c index 0dede2f..3dab489 100644 --- a/getnextline/tests/src/new/mainc.c +++ b/getnextline/tests/src/new/mainc.c @@ -1,12 +1,12 @@ /* ************************************************************************** */ /* */ /* :::::::: */ -/* mainc.c |o_o || | */ +/* mainc.c :+: :+: */ /* +:+ */ -/* By: djonker +#+ */ +/* By: houtworm +#+ */ /* +#+ */ -/* Created: 2021/02/15 03:43:05 by djonker #+# #+# */ -/* Updated: 2023/02/21 00:35:58 by houtworm \___)=(___/ */ +/* Created: 2023/10/26 18:52:50 by houtworm #+# #+# */ +/* Updated: 2023/10/26 18:52:51 by houtworm ######## odam.nl */ /* */ /* ************************************************************************** */ diff --git a/getnextline/tests/src/new/maind.c b/getnextline/tests/src/new/maind.c index 3b0c621..b747296 100644 --- a/getnextline/tests/src/new/maind.c +++ b/getnextline/tests/src/new/maind.c @@ -1,12 +1,12 @@ /* ************************************************************************** */ /* */ /* :::::::: */ -/* maind.c |o_o || | */ +/* maind.c :+: :+: */ /* +:+ */ -/* By: djonker +#+ */ +/* By: houtworm +#+ */ /* +#+ */ -/* Created: 2021/02/15 03:43:05 by djonker #+# #+# */ -/* Updated: 2023/02/21 00:35:54 by houtworm \___)=(___/ */ +/* Created: 2023/10/26 18:52:53 by houtworm #+# #+# */ +/* Updated: 2023/10/26 18:52:54 by houtworm ######## odam.nl */ /* */ /* ************************************************************************** */ diff --git a/getnextline/tests/src/new/maine.c b/getnextline/tests/src/new/maine.c index 3d7fbb6..8197d64 100644 --- a/getnextline/tests/src/new/maine.c +++ b/getnextline/tests/src/new/maine.c @@ -1,12 +1,12 @@ /* ************************************************************************** */ /* */ /* :::::::: */ -/* maine.c |o_o || | */ +/* maine.c :+: :+: */ /* +:+ */ -/* By: djonker +#+ */ +/* By: houtworm +#+ */ /* +#+ */ -/* Created: 2021/02/15 03:43:05 by djonker #+# #+# */ -/* Updated: 2023/02/23 15:00:31 by houtworm \___)=(___/ */ +/* Created: 2023/10/26 18:52:56 by houtworm #+# #+# */ +/* Updated: 2023/10/26 18:52:56 by houtworm ######## odam.nl */ /* */ /* ************************************************************************** */ diff --git a/getnextline/tests/src/new/mainf.c b/getnextline/tests/src/new/mainf.c index f91cea9..1f75dd9 100644 --- a/getnextline/tests/src/new/mainf.c +++ b/getnextline/tests/src/new/mainf.c @@ -1,12 +1,12 @@ /* ************************************************************************** */ /* */ /* :::::::: */ -/* mainf.c |o_o || | */ +/* mainf.c :+: :+: */ /* +:+ */ -/* By: djonker +#+ */ +/* By: houtworm +#+ */ /* +#+ */ -/* Created: 2021/02/15 03:43:05 by djonker #+# #+# */ -/* Updated: 2023/02/21 00:35:34 by houtworm \___)=(___/ */ +/* Created: 2023/10/26 18:52:59 by houtworm #+# #+# */ +/* Updated: 2023/10/26 18:52:59 by houtworm ######## odam.nl */ /* */ /* ************************************************************************** */ diff --git a/getnextline/tests/src/new/maing.c b/getnextline/tests/src/new/maing.c index d612a80..62878a9 100644 --- a/getnextline/tests/src/new/maing.c +++ b/getnextline/tests/src/new/maing.c @@ -1,12 +1,12 @@ /* ************************************************************************** */ /* */ /* :::::::: */ -/* maing.c |o_o || | */ +/* maing.c :+: :+: */ /* +:+ */ -/* By: djonker +#+ */ +/* By: houtworm +#+ */ /* +#+ */ -/* Created: 2021/02/15 03:43:05 by djonker #+# #+# */ -/* Updated: 2023/03/01 01:41:42 by houtworm \___)=(___/ */ +/* Created: 2023/10/26 18:53:02 by houtworm #+# #+# */ +/* Updated: 2023/10/26 18:53:02 by houtworm ######## odam.nl */ /* */ /* ************************************************************************** */ diff --git a/getnextline/tests/src/old/maina.c b/getnextline/tests/src/old/maina.c index e1b3495..67cd7aa 100644 --- a/getnextline/tests/src/old/maina.c +++ b/getnextline/tests/src/old/maina.c @@ -1,12 +1,12 @@ /* ************************************************************************** */ /* */ /* :::::::: */ -/* maina.c |o_o || | */ +/* maina.c :+: :+: */ /* +:+ */ -/* By: djonker +#+ */ +/* By: houtworm +#+ */ /* +#+ */ -/* Created: 2021/02/15 03:43:05 by djonker #+# #+# */ -/* Updated: 2023/02/21 00:42:59 by houtworm \___)=(___/ */ +/* Created: 2023/10/26 18:53:05 by houtworm #+# #+# */ +/* Updated: 2023/10/26 18:53:05 by houtworm ######## odam.nl */ /* */ /* ************************************************************************** */ diff --git a/getnextline/tests/src/old/mainb.c b/getnextline/tests/src/old/mainb.c index 1acfb80..d090b50 100644 --- a/getnextline/tests/src/old/mainb.c +++ b/getnextline/tests/src/old/mainb.c @@ -1,12 +1,12 @@ /* ************************************************************************** */ /* */ /* :::::::: */ -/* mainb.c |o_o || | */ +/* mainb.c :+: :+: */ /* +:+ */ -/* By: djonker +#+ */ +/* By: houtworm +#+ */ /* +#+ */ -/* Created: 2021/02/15 03:43:05 by djonker #+# #+# */ -/* Updated: 2023/02/21 00:43:10 by houtworm \___)=(___/ */ +/* Created: 2023/10/26 18:53:08 by houtworm #+# #+# */ +/* Updated: 2023/10/26 18:53:08 by houtworm ######## odam.nl */ /* */ /* ************************************************************************** */ diff --git a/getnextline/tests/src/old/mainc.c b/getnextline/tests/src/old/mainc.c index cddda76..91c37d9 100644 --- a/getnextline/tests/src/old/mainc.c +++ b/getnextline/tests/src/old/mainc.c @@ -1,12 +1,12 @@ /* ************************************************************************** */ /* */ /* :::::::: */ -/* mainc.c |o_o || | */ +/* mainc.c :+: :+: */ /* +:+ */ -/* By: djonker +#+ */ +/* By: houtworm +#+ */ /* +#+ */ -/* Created: 2021/02/15 03:43:05 by djonker #+# #+# */ -/* Updated: 2023/02/21 00:43:21 by houtworm \___)=(___/ */ +/* Created: 2023/10/26 18:53:10 by houtworm #+# #+# */ +/* Updated: 2023/10/26 18:53:11 by houtworm ######## odam.nl */ /* */ /* ************************************************************************** */ diff --git a/getnextline/tests/src/old/maind.c b/getnextline/tests/src/old/maind.c index 33de689..598db04 100644 --- a/getnextline/tests/src/old/maind.c +++ b/getnextline/tests/src/old/maind.c @@ -1,12 +1,12 @@ /* ************************************************************************** */ /* */ /* :::::::: */ -/* maind.c |o_o || | */ +/* maind.c :+: :+: */ /* +:+ */ -/* By: djonker +#+ */ +/* By: houtworm +#+ */ /* +#+ */ -/* Created: 2021/02/15 03:43:05 by djonker #+# #+# */ -/* Updated: 2023/03/01 01:24:29 by houtworm \___)=(___/ */ +/* Created: 2023/10/26 18:53:14 by houtworm #+# #+# */ +/* Updated: 2023/10/26 18:53:14 by houtworm ######## odam.nl */ /* */ /* ************************************************************************** */ diff --git a/getnextline/tests/src/old/maine.c b/getnextline/tests/src/old/maine.c index da6a8ea..521a34e 100644 --- a/getnextline/tests/src/old/maine.c +++ b/getnextline/tests/src/old/maine.c @@ -1,12 +1,12 @@ /* ************************************************************************** */ /* */ /* :::::::: */ -/* maine.c |o_o || | */ +/* maine.c :+: :+: */ /* +:+ */ -/* By: djonker +#+ */ +/* By: houtworm +#+ */ /* +#+ */ -/* Created: 2021/02/15 03:43:05 by djonker #+# #+# */ -/* Updated: 2023/02/23 15:00:34 by houtworm \___)=(___/ */ +/* Created: 2023/10/26 18:53:18 by houtworm #+# #+# */ +/* Updated: 2023/10/26 18:53:18 by houtworm ######## odam.nl */ /* */ /* ************************************************************************** */ diff --git a/getnextline/tests/src/old/mainf.c b/getnextline/tests/src/old/mainf.c index b3df175..be35496 100644 --- a/getnextline/tests/src/old/mainf.c +++ b/getnextline/tests/src/old/mainf.c @@ -1,12 +1,12 @@ /* ************************************************************************** */ /* */ /* :::::::: */ -/* mainf.c |o_o || | */ +/* mainf.c :+: :+: */ /* +:+ */ -/* By: djonker +#+ */ +/* By: houtworm +#+ */ /* +#+ */ -/* Created: 2021/02/15 03:43:05 by djonker #+# #+# */ -/* Updated: 2023/02/21 00:44:00 by houtworm \___)=(___/ */ +/* Created: 2023/10/26 18:53:21 by houtworm #+# #+# */ +/* Updated: 2023/10/26 18:53:22 by houtworm ######## odam.nl */ /* */ /* ************************************************************************** */ diff --git a/getnextline/tests/src/old/maing.c b/getnextline/tests/src/old/maing.c index 28dda4d..6828360 100644 --- a/getnextline/tests/src/old/maing.c +++ b/getnextline/tests/src/old/maing.c @@ -1,12 +1,12 @@ /* ************************************************************************** */ /* */ /* :::::::: */ -/* maing.c |o_o || | */ +/* maing.c :+: :+: */ /* +:+ */ -/* By: djonker +#+ */ +/* By: houtworm +#+ */ /* +#+ */ -/* Created: 2021/02/15 03:43:05 by djonker #+# #+# */ -/* Updated: 2023/03/01 01:39:22 by houtworm \___)=(___/ */ +/* Created: 2023/10/26 18:53:24 by houtworm #+# #+# */ +/* Updated: 2023/10/26 18:53:25 by houtworm ######## odam.nl */ /* */ /* ************************************************************************** */ diff --git a/pipex.h b/pipex.h index 4e55bd4..802a07c 100644 --- a/pipex.h +++ b/pipex.h @@ -1,12 +1,12 @@ /* ************************************************************************** */ /* */ -/* .--. _ */ -/* pipex.h |o_o || | */ -/* |:_/ || |_ _ ___ __ */ -/* By: djonker // \ \ __| | | \ \/ / */ -/* (| | )|_| |_| |> < */ -/* Created: 2023/02/02 12:37:09 by djonker /'\_ _/`\__|\__,_/_/\_\ */ -/* Updated: 2023/02/19 14:00:14 by djonker \___)=(___/ */ +/* :::::::: */ +/* pipex.h :+: :+: */ +/* +:+ */ +/* By: houtworm +#+ */ +/* +#+ */ +/* Created: 2023/10/26 18:58:10 by houtworm #+# #+# */ +/* Updated: 2023/10/26 18:58:10 by houtworm ######## odam.nl */ /* */ /* ************************************************************************** */ diff --git a/src/bonus/error.c b/src/bonus/error.c index 08969fd..920355f 100644 --- a/src/bonus/error.c +++ b/src/bonus/error.c @@ -1,12 +1,12 @@ /* ************************************************************************** */ /* */ -/* .--. _ */ -/* error.c |o_o || | */ -/* |:_/ || |_ _ ___ __ */ -/* By: djonker // \ \ __| | | \ \/ / */ -/* (| | )|_| |_| |> < */ -/* Created: 2023/02/05 11:07:41 by djonker /'\_ _/`\__|\__,_/_/\_\ */ -/* Updated: 2023/02/25 00:56:39 by houtworm \___)=(___/ */ +/* :::::::: */ +/* error.c :+: :+: */ +/* +:+ */ +/* By: houtworm +#+ */ +/* +#+ */ +/* Created: 2023/10/26 18:57:30 by houtworm #+# #+# */ +/* Updated: 2023/10/26 18:57:30 by houtworm ######## odam.nl */ /* */ /* ************************************************************************** */ diff --git a/src/bonus/init.c b/src/bonus/init.c index 103e1d0..fafbe53 100644 --- a/src/bonus/init.c +++ b/src/bonus/init.c @@ -1,12 +1,12 @@ /* ************************************************************************** */ /* */ -/* .--. _ */ -/* init.c |o_o || | */ -/* |:_/ || |_ _ ___ __ */ -/* By: djonker // \ \ __| | | \ \/ / */ -/* (| | )|_| |_| |> < */ -/* Created: 2023/02/02 13:04:43 by djonker /'\_ _/`\__|\__,_/_/\_\ */ -/* Updated: 2023/02/19 18:20:54 by djonker \___)=(___/ */ +/* :::::::: */ +/* init.c :+: :+: */ +/* +:+ */ +/* By: houtworm +#+ */ +/* +#+ */ +/* Created: 2023/10/26 18:57:33 by houtworm #+# #+# */ +/* Updated: 2023/10/26 18:57:33 by houtworm ######## odam.nl */ /* */ /* ************************************************************************** */ diff --git a/src/bonus/pipex.c b/src/bonus/pipex.c index 379460d..43283f1 100644 --- a/src/bonus/pipex.c +++ b/src/bonus/pipex.c @@ -1,12 +1,12 @@ /* ************************************************************************** */ /* */ -/* .--. _ */ -/* pipex.c |o_o || | */ -/* |:_/ || |_ _ ___ __ */ -/* By: djonker // \ \ __| | | \ \/ / */ -/* (| | )|_| |_| |> < */ -/* Created: 2023/02/02 12:37:01 by djonker /'\_ _/`\__|\__,_/_/\_\ */ -/* Updated: 2023/02/25 02:42:42 by houtworm \___)=(___/ */ +/* :::::::: */ +/* pipex.c :+: :+: */ +/* +:+ */ +/* By: houtworm +#+ */ +/* +#+ */ +/* Created: 2023/10/26 18:57:36 by houtworm #+# #+# */ +/* Updated: 2023/10/26 18:57:40 by houtworm ######## odam.nl */ /* */ /* ************************************************************************** */ diff --git a/src/mandatory/error.c b/src/mandatory/error.c index 956e5dc..e6dc0d2 100644 --- a/src/mandatory/error.c +++ b/src/mandatory/error.c @@ -1,12 +1,12 @@ /* ************************************************************************** */ /* */ -/* .--. _ */ -/* error.c |o_o || | */ -/* |:_/ || |_ _ ___ __ */ -/* By: djonker // \ \ __| | | \ \/ / */ -/* (| | )|_| |_| |> < */ -/* Created: 2023/02/05 11:07:41 by djonker /'\_ _/`\__|\__,_/_/\_\ */ -/* Updated: 2023/02/25 01:00:25 by houtworm \___)=(___/ */ +/* :::::::: */ +/* error.c :+: :+: */ +/* +:+ */ +/* By: houtworm +#+ */ +/* +#+ */ +/* Created: 2023/10/26 18:57:44 by houtworm #+# #+# */ +/* Updated: 2023/10/26 18:57:44 by houtworm ######## odam.nl */ /* */ /* ************************************************************************** */ diff --git a/src/mandatory/init.c b/src/mandatory/init.c index bfec73c..14f4180 100644 --- a/src/mandatory/init.c +++ b/src/mandatory/init.c @@ -1,12 +1,12 @@ /* ************************************************************************** */ /* */ -/* .--. _ */ -/* init.c |o_o || | */ -/* |:_/ || |_ _ ___ __ */ -/* By: djonker // \ \ __| | | \ \/ / */ -/* (| | )|_| |_| |> < */ -/* Created: 2023/02/02 13:04:43 by djonker /'\_ _/`\__|\__,_/_/\_\ */ -/* Updated: 2023/02/17 16:12:06 by houtworm \___)=(___/ */ +/* :::::::: */ +/* init.c :+: :+: */ +/* +:+ */ +/* By: houtworm +#+ */ +/* +#+ */ +/* Created: 2023/10/26 18:57:47 by houtworm #+# #+# */ +/* Updated: 2023/10/26 18:57:47 by houtworm ######## odam.nl */ /* */ /* ************************************************************************** */ diff --git a/src/mandatory/pipex.c b/src/mandatory/pipex.c index c77c211..2179d30 100644 --- a/src/mandatory/pipex.c +++ b/src/mandatory/pipex.c @@ -1,12 +1,12 @@ /* ************************************************************************** */ /* */ -/* .--. _ */ -/* pipex.c |o_o || | */ -/* |:_/ || |_ _ ___ __ */ -/* By: djonker // \ \ __| | | \ \/ / */ -/* (| | )|_| |_| |> < */ -/* Created: 2023/02/02 12:37:01 by djonker /'\_ _/`\__|\__,_/_/\_\ */ -/* Updated: 2023/02/25 02:43:12 by houtworm \___)=(___/ */ +/* :::::::: */ +/* pipex.c :+: :+: */ +/* +:+ */ +/* By: houtworm +#+ */ +/* +#+ */ +/* Created: 2023/10/26 18:57:50 by houtworm #+# #+# */ +/* Updated: 2023/10/26 18:57:50 by houtworm ######## odam.nl */ /* */ /* ************************************************************************** */