f-huang / 42sh

This project consists of creating a complete shell from scratch. A minimum set of features are required, from which you will build your own successful shell. This project allows us to see or review a very wide range of standard UNIX (and POSIX) features.
0 stars 0 forks source link

Parser -- Tokens to abstact syntax tree #47

Closed f-huang closed 7 years ago

f-huang commented 7 years ago

Take the tokens list and convert it to an abstract syntax tree.

void   tokens_to_ast(t_ast **lst_tokens);