Restore to a stage where it works and is easier to manage (#5)
Everything in the parser that needs to be normed is in a single .c + .h file (also there is the scanner.c file)
This commit is contained in:
parent
dc2358a320
commit
cc8567f434
61 changed files with 14052 additions and 15081 deletions
|
|
@ -30,10 +30,10 @@
|
|||
|
||||
# define PATH_FILES "/usr/local/bin:/usr/bin:/bin:/usr/local/games:/usr/games"
|
||||
|
||||
typedef struct s_myparser
|
||||
typedef struct s_parser
|
||||
{
|
||||
t_parser *parser;
|
||||
} t_myparser;
|
||||
TSParser *parser;
|
||||
} t_parser;
|
||||
|
||||
typedef struct s_utils
|
||||
{
|
||||
|
|
@ -42,7 +42,7 @@ typedef struct s_utils
|
|||
t_str *strs_input;
|
||||
t_str *path;
|
||||
t_str *envp;
|
||||
t_myparser parser;
|
||||
t_parser parser;
|
||||
t_node current_node;
|
||||
} t_utils;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue