From 25fd1cd864ee856797ab26ae724d8e46cf81aa42 Mon Sep 17 00:00:00 2001 From: Lukas Jiriste Date: Sat, 11 Nov 2023 18:51:58 +0100 Subject: [PATCH] Add 42 header to each .c and .h file --- color.c | 11 +++++++++++ color.h | 11 +++++++++++ complex.c | 12 ++++++++++++ complex.h | 12 ++++++++++++ fractol.h | 11 +++++++++++ main.c | 2 +- vect2.c | 11 +++++++++++ vect2.h | 11 +++++++++++ 8 files changed, 80 insertions(+), 1 deletion(-) diff --git a/color.c b/color.c index f3b481f..c7651e6 100644 --- a/color.c +++ b/color.c @@ -1,3 +1,14 @@ +/* ************************************************************************** */ +/* */ +/* ::: :::::::: */ +/* color.c :+: :+: :+: */ +/* +:+ +:+ +:+ */ +/* By: ljiriste +#+ +:+ +#+ */ +/* +#+#+#+#+#+ +#+ */ +/* Created: 2023/11/11 18:50:32 by ljiriste #+# #+# */ +/* Updated: 2023/11/11 18:51:07 by ljiriste ### ########.fr */ +/* */ +/* ************************************************************************** */ #include #include "color.h" diff --git a/color.h b/color.h index 96fa092..b4f5f16 100644 --- a/color.h +++ b/color.h @@ -1,3 +1,14 @@ +/* ************************************************************************** */ +/* */ +/* ::: :::::::: */ +/* color.h :+: :+: :+: */ +/* +:+ +:+ +:+ */ +/* By: ljiriste +#+ +:+ +#+ */ +/* +#+#+#+#+#+ +#+ */ +/* Created: 2023/11/11 18:51:23 by ljiriste #+# #+# */ +/* Updated: 2023/11/11 18:51:25 by ljiriste ### ########.fr */ +/* */ +/* ************************************************************************** */ #ifndef COLOR_H # define COLOR_H diff --git a/complex.c b/complex.c index e5dcc81..f8780fd 100644 --- a/complex.c +++ b/complex.c @@ -1,3 +1,15 @@ +/* ************************************************************************** */ +/* */ +/* ::: :::::::: */ +/* complex.c :+: :+: :+: */ +/* +:+ +:+ +:+ */ +/* By: ljiriste +#+ +:+ +#+ */ +/* +#+#+#+#+#+ +#+ */ +/* Created: 2023/11/11 18:50:39 by ljiriste #+# #+# */ +/* Updated: 2023/11/11 18:50:41 by ljiriste ### ########.fr */ +/* */ +/* ************************************************************************** */ + #include #include "complex.h" diff --git a/complex.h b/complex.h index 05a11ae..3abdf57 100644 --- a/complex.h +++ b/complex.h @@ -1,3 +1,15 @@ +/* ************************************************************************** */ +/* */ +/* ::: :::::::: */ +/* complex.h :+: :+: :+: */ +/* +:+ +:+ +:+ */ +/* By: ljiriste +#+ +:+ +#+ */ +/* +#+#+#+#+#+ +#+ */ +/* Created: 2023/11/11 18:51:27 by ljiriste #+# #+# */ +/* Updated: 2023/11/11 18:51:28 by ljiriste ### ########.fr */ +/* */ +/* ************************************************************************** */ + #ifndef COMPLEX_H # define COMPLEX_H diff --git a/fractol.h b/fractol.h index 51d1ff1..c1ddea7 100644 --- a/fractol.h +++ b/fractol.h @@ -1,3 +1,14 @@ +/* ************************************************************************** */ +/* */ +/* ::: :::::::: */ +/* fractol.h :+: :+: :+: */ +/* +:+ +:+ +:+ */ +/* By: ljiriste +#+ +:+ +#+ */ +/* +#+#+#+#+#+ +#+ */ +/* Created: 2023/11/11 18:51:29 by ljiriste #+# #+# */ +/* Updated: 2023/11/11 18:51:32 by ljiriste ### ########.fr */ +/* */ +/* ************************************************************************** */ #ifndef FRACTOL_H # define FRACTOL_H diff --git a/main.c b/main.c index c643fcd..07a295c 100644 --- a/main.c +++ b/main.c @@ -6,7 +6,7 @@ /* By: ljiriste +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2023/10/27 14:29:26 by ljiriste #+# #+# */ -/* Updated: 2023/11/11 18:41:55 by ljiriste ### ########.fr */ +/* Updated: 2023/11/11 18:50:45 by ljiriste ### ########.fr */ /* */ /* ************************************************************************** */ diff --git a/vect2.c b/vect2.c index 865a60e..9c89526 100644 --- a/vect2.c +++ b/vect2.c @@ -1,3 +1,14 @@ +/* ************************************************************************** */ +/* */ +/* ::: :::::::: */ +/* vect2.c :+: :+: :+: */ +/* +:+ +:+ +:+ */ +/* By: ljiriste +#+ +:+ +#+ */ +/* +#+#+#+#+#+ +#+ */ +/* Created: 2023/11/11 18:50:53 by ljiriste #+# #+# */ +/* Updated: 2023/11/11 18:50:59 by ljiriste ### ########.fr */ +/* */ +/* ************************************************************************** */ #include "vect2.h" diff --git a/vect2.h b/vect2.h index 005b3ce..500035c 100644 --- a/vect2.h +++ b/vect2.h @@ -1,3 +1,14 @@ +/* ************************************************************************** */ +/* */ +/* ::: :::::::: */ +/* vect2.h :+: :+: :+: */ +/* +:+ +:+ +:+ */ +/* By: ljiriste +#+ +:+ +#+ */ +/* +#+#+#+#+#+ +#+ */ +/* Created: 2023/11/11 18:51:34 by ljiriste #+# #+# */ +/* Updated: 2023/11/11 18:51:38 by ljiriste ### ########.fr */ +/* */ +/* ************************************************************************** */ #ifndef VECT2_H # define VECT2_H -- 2.30.2