remove inputs

This commit is contained in:
2024-12-02 12:32:14 +01:00
commit 60acac0231
247 changed files with 9071 additions and 0 deletions

33
2022/7/structs.h Normal file
View File

@ -0,0 +1,33 @@
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* structs.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: tomoron <tomoron@student.42angouleme.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/10/29 14:20:26 by tomoron #+# #+# */
/* Updated: 2024/10/29 18:10:36 by tomoron ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef STRUCTS_H
# define STRUCTS_H
typedef struct s_file
{
int is_dir;
void *next;
char *name;
int size;
} t_file;
typedef struct s_directory
{
int is_dir;
void *next;
char *name;
void *elements;
struct s_directory *parent;
} t_directory;
#endif