From f1a1d6aef4026cc6148abc8c42654794e3c305cc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl?= Date: Sat, 28 Sep 2024 12:17:27 +0200 Subject: [PATCH] sytle: removing the private header to adding him to the public one (token) --- parser/include/parser/_token.h | 20 -------------------- parser/include/parser/token.h | 4 +--- 2 files changed, 1 insertion(+), 23 deletions(-) delete mode 100644 parser/include/parser/_token.h diff --git a/parser/include/parser/_token.h b/parser/include/parser/_token.h deleted file mode 100644 index 3f3e2717..00000000 --- a/parser/include/parser/_token.h +++ /dev/null @@ -1,20 +0,0 @@ -/* ************************************************************************** */ -/* */ -/* ::: :::::::: */ -/* _token.h :+: :+: :+: */ -/* +:+ +:+ +:+ */ -/* By: rparodi +#+ +:+ +#+ */ -/* +#+#+#+#+#+ +#+ */ -/* Created: 2024/09/25 11:38:28 by rparodi #+# #+# */ -/* Updated: 2024/09/26 18:21:45 by maiboyer ### ########.fr */ -/* */ -/* ************************************************************************** */ - -#ifndef _TOKEN_H -# define _TOKEN_H - -# include "me/types.h" - -typedef struct s_token t_token; - -#endif diff --git a/parser/include/parser/token.h b/parser/include/parser/token.h index edc47346..e862ace9 100644 --- a/parser/include/parser/token.h +++ b/parser/include/parser/token.h @@ -6,15 +6,13 @@ /* By: maiboyer +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2024/09/26 17:59:23 by maiboyer #+# #+# */ -/* Updated: 2024/09/27 22:37:22 by rparodi ### ########.fr */ +/* Updated: 2024/09/28 11:45:54 by rparodi ### ########.fr */ /* */ /* ************************************************************************** */ #ifndef TOKEN_H #define TOKEN_H -#include "parser/_token.h" - #include "me/string/string.h" #include "me/vec/vec_token.h"