Missing include statements

This commit is contained in:
Timo Schmidt 2023-03-19 00:24:46 +01:00
parent 3aa6f93b42
commit 525effc84d
5 changed files with 16 additions and 12 deletions

View File

@ -6,10 +6,14 @@
/* By: tischmid <marvin@42.fr> +#+ +:+ +#+ */ /* By: tischmid <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */ /* +#+#+#+#+#+ +#+ */
/* Created: 2023/03/18 23:37:32 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 <stdio.h>
#include "include/arghandle.h"
#include "include/ft_lib.h"
int get_dim(char *type, int default_max) int get_dim(char *type, int default_max)
{ {
char output[10]; char output[10];

View File

@ -6,12 +6,12 @@
/* By: tischmid <marvin@42.fr> +#+ +:+ +#+ */ /* By: tischmid <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */ /* +#+#+#+#+#+ +#+ */
/* Created: 2023/03/18 22:33:38 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 <unistd.h> #include <unistd.h>
#include "ft_lib.h" #include "include/ft_lib.h"
void ft_putchar(char c) void ft_putchar(char c)
{ {

View File

@ -6,7 +6,7 @@
/* By: tischmid <marvin@42.fr> +#+ +:+ +#+ */ /* By: tischmid <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */ /* +#+#+#+#+#+ +#+ */
/* Created: 2023/03/18 23:45:47 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 # define RUSH00_H
void horiz_line(char left, char middle, char right, int width); void horiz_line(char left, char middle, char right, int width);
void rush(int x, int y) void rush(int x, int y);
#endif #endif

8
main.c
View File

@ -6,14 +6,14 @@
/* By: jtorrez- <marvin@42.fr> +#+ +:+ +#+ */ /* By: jtorrez- <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */ /* +#+#+#+#+#+ +#+ */
/* Created: 2023/03/18 20:15:26 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 <stdio.h> #include <stdio.h>
#include "ft_lib.h" #include "include/ft_lib.h"
#include "arghandle.h" #include "include/arghandle.h"
#include "rush00.h" #include "include/rush00.h"
int main(int argc, char *argv[]) int main(int argc, char *argv[])
{ {

View File

@ -6,12 +6,12 @@
/* By: jtorrez- <marvin@42.fr> +#+ +:+ +#+ */ /* By: jtorrez- <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */ /* +#+#+#+#+#+ +#+ */
/* Created: 2023/03/18 20:15: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 "include/ft_lib.h"
#include "rush00.h" #include "include/rush00.h"
const char g_inside = ' '; const char g_inside = ' ';