Missing include statements
This commit is contained in:
parent
3aa6f93b42
commit
525effc84d
|
@ -6,10 +6,14 @@
|
|||
/* By: tischmid <marvin@42.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* 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)
|
||||
{
|
||||
char output[10];
|
||||
|
|
4
ft_lib.c
4
ft_lib.c
|
@ -6,12 +6,12 @@
|
|||
/* By: tischmid <marvin@42.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* 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 "ft_lib.h"
|
||||
#include "include/ft_lib.h"
|
||||
|
||||
void ft_putchar(char c)
|
||||
{
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
/* By: tischmid <marvin@42.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* 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
|
||||
|
|
8
main.c
8
main.c
|
@ -6,14 +6,14 @@
|
|||
/* By: jtorrez- <marvin@42.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* 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 "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[])
|
||||
{
|
||||
|
|
6
rush00.c
6
rush00.c
|
@ -6,12 +6,12 @@
|
|||
/* By: jtorrez- <marvin@42.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* 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 = ' ';
|
||||
|
||||
|
|
Loading…
Reference in New Issue