update: normed lots of stuff
This commit is contained in:
parent
978636b6ef
commit
50a2f3d4be
118 changed files with 1145 additions and 1330 deletions
|
|
@ -1,37 +0,0 @@
|
|||
/* ************************************************************************** */
|
||||
/* */
|
||||
/* ::: :::::::: */
|
||||
/* node.h :+: :+: :+: */
|
||||
/* +:+ +:+ +:+ */
|
||||
/* By: maiboyer <maiboyer@student.42.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2024/04/28 18:35:22 by maiboyer #+# #+# */
|
||||
/* Updated: 2024/05/29 14:46:20 by maiboyer ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
#ifndef NODE_H
|
||||
# define NODE_H
|
||||
|
||||
# include "me/types.h"
|
||||
# include "parser/api.h"
|
||||
|
||||
typedef struct s_node
|
||||
{
|
||||
t_u64 kind;
|
||||
t_const_str kind_str;
|
||||
t_const_str field_str;
|
||||
t_u64 field;
|
||||
t_const_str input;
|
||||
t_str single_str;
|
||||
t_usize start;
|
||||
t_usize end;
|
||||
t_usize childs_count;
|
||||
struct s_node *childs;
|
||||
} t_node;
|
||||
|
||||
t_node build_node(t_parse_node curr, t_const_str input);
|
||||
t_str node_getstr(t_node *node);
|
||||
void free_node(t_node self);
|
||||
|
||||
#endif /* NODE_H */
|
||||
|
|
@ -6,18 +6,18 @@
|
|||
/* By: maiboyer <maiboyer@student.42.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2024/05/02 15:49:56 by maiboyer #+# #+# */
|
||||
/* Updated: 2024/09/06 15:33:05 by rparodi ### ########.fr */
|
||||
/* Updated: 2024/09/19 17:28:52 by maiboyer ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
#ifndef STATE_H
|
||||
# define STATE_H
|
||||
|
||||
# include "app/node.h"
|
||||
# include "ast/ast.h"
|
||||
# include "me/hashmap/hashmap_env.h"
|
||||
# include "me/os/os.h"
|
||||
# include "me/types.h"
|
||||
# include "ast/ast.h"
|
||||
# include "parser/inner/node.h"
|
||||
|
||||
typedef struct s_state t_state;
|
||||
|
||||
|
|
@ -27,8 +27,7 @@ struct s_state
|
|||
t_str str_input;
|
||||
t_hashmap_env *env;
|
||||
t_hashmap_env *tmp_var;
|
||||
t_node current_node;
|
||||
t_first_parser *parser;
|
||||
t_parser *parser;
|
||||
t_ast_node ast;
|
||||
};
|
||||
|
||||
|
|
|
|||
|
|
@ -1,47 +0,0 @@
|
|||
/* ************************************************************************** */
|
||||
/* */
|
||||
/* ::: :::::::: */
|
||||
/* minishell.h :+: :+: :+: */
|
||||
/* +:+ +:+ +:+ */
|
||||
/* By: rparodi <rparodi@student.42.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2024/03/28 14:41:15 by rparodi #+# #+# */
|
||||
/* Updated: 2024/08/03 17:48:44 by rparodi ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
#ifndef MINISHELL_H
|
||||
# define MINISHELL_H
|
||||
|
||||
# include "app/node.h"
|
||||
# include "app/state.h"
|
||||
# include "me/types.h"
|
||||
|
||||
# include <fcntl.h>
|
||||
# include <sys/types.h>
|
||||
# include <sys/wait.h>
|
||||
# include <unistd.h>
|
||||
|
||||
# define PATH_FILES "/usr/local/bin:/usr/bin:/bin:/usr/local/games:/usr/games"
|
||||
|
||||
t_i32 main(t_i32 argc, t_str argv[], t_str arge[]);
|
||||
void ft_other_cmd(t_state *shcat, t_usize i, t_usize prev_i);
|
||||
t_i32 ft_strcmp(const char *s1, const char *s2);
|
||||
t_i32 ft_check_type_operators(t_str operators);
|
||||
t_str *ft_split(t_const_str s, t_i8 c);
|
||||
t_str ft_strdup(t_const_str s);
|
||||
char *ft_strjoin(char const *s1, char const *s2);
|
||||
void *ft_calloc(t_usize nmemb, t_usize size);
|
||||
size_t ft_strlen(t_const_str s);
|
||||
t_usize ft_strlcpy(t_str dst, t_const_str src, t_usize size);
|
||||
void *ft_memset(void *s, t_i32 c, t_usize n);
|
||||
void ft_bzero(void *s, t_usize n);
|
||||
void ft_free_strs(t_str *strs);
|
||||
void ft_pwd(void);
|
||||
void ft_echo(t_str txt, t_str flag);
|
||||
void ft_exit(t_state *maiboyerlpb, t_u8 exit_status);
|
||||
void ft_free(void *ptr);
|
||||
|
||||
t_error handle_node_getstr(t_node *self, t_state *shcat, t_str *out);
|
||||
|
||||
#endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue