From 525effc84d5470b3a1f585bb5bdaf7315d29eb86 Mon Sep 17 00:00:00 2001 From: Timo Schmidt Date: Sun, 19 Mar 2023 00:24:46 +0100 Subject: [PATCH] Missing include statements --- arghandle.c | 6 +++++- ft_lib.c | 4 ++-- include/rush00.h | 4 ++-- main.c | 8 ++++---- rush00.c | 6 +++--- 5 files changed, 16 insertions(+), 12 deletions(-) diff --git a/arghandle.c b/arghandle.c index 869a577..58a6842 100644 --- a/arghandle.c +++ b/arghandle.c @@ -6,10 +6,14 @@ /* By: tischmid +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2023/03/18 23:37:32 by tischmid #+# #+# */ -/* Updated: 2023/03/18 23:37:33 by tischmid ### ########.fr */ +/* Updated: 2023/03/19 00:23:25 by tischmid ### ########.fr */ /* */ /* ************************************************************************** */ +#include +#include "include/arghandle.h" +#include "include/ft_lib.h" + int get_dim(char *type, int default_max) { char output[10]; diff --git a/ft_lib.c b/ft_lib.c index ad96827..eed3f37 100644 --- a/ft_lib.c +++ b/ft_lib.c @@ -6,12 +6,12 @@ /* By: tischmid +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2023/03/18 22:33:38 by tischmid #+# #+# */ -/* Updated: 2023/03/18 23:35:30 by tischmid ### ########.fr */ +/* Updated: 2023/03/19 00:21:35 by tischmid ### ########.fr */ /* */ /* ************************************************************************** */ #include -#include "ft_lib.h" +#include "include/ft_lib.h" void ft_putchar(char c) { diff --git a/include/rush00.h b/include/rush00.h index 821c58b..895e8ae 100644 --- a/include/rush00.h +++ b/include/rush00.h @@ -6,7 +6,7 @@ /* By: tischmid +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2023/03/18 23:45:47 by tischmid #+# #+# */ -/* Updated: 2023/03/18 23:45:48 by tischmid ### ########.fr */ +/* Updated: 2023/03/19 00:22:17 by tischmid ### ########.fr */ /* */ /* ************************************************************************** */ @@ -14,6 +14,6 @@ # define RUSH00_H void horiz_line(char left, char middle, char right, int width); -void rush(int x, int y) +void rush(int x, int y); #endif diff --git a/main.c b/main.c index 427fd90..59d68ec 100644 --- a/main.c +++ b/main.c @@ -6,14 +6,14 @@ /* By: jtorrez- +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2023/03/18 20:15:26 by jtorrez- #+# #+# */ -/* Updated: 2023/03/18 23:45:18 by tischmid ### ########.fr */ +/* Updated: 2023/03/19 00:20:54 by tischmid ### ########.fr */ /* */ /* ************************************************************************** */ #include -#include "ft_lib.h" -#include "arghandle.h" -#include "rush00.h" +#include "include/ft_lib.h" +#include "include/arghandle.h" +#include "include/rush00.h" int main(int argc, char *argv[]) { diff --git a/rush00.c b/rush00.c index 7ad5476..75acef7 100644 --- a/rush00.c +++ b/rush00.c @@ -6,12 +6,12 @@ /* By: jtorrez- +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2023/03/18 20:15:12 by jtorrez- #+# #+# */ -/* Updated: 2023/03/18 23:43:58 by tischmid ### ########.fr */ +/* Updated: 2023/03/19 00:21:06 by tischmid ### ########.fr */ /* */ /* ************************************************************************** */ -#include "ft_lib.h" -#include "rush00.h" +#include "include/ft_lib.h" +#include "include/rush00.h" const char g_inside = ' ';