1 2 3 4 5 6 7
typedef struct astNode { char *func; char *args[8]; struct astNode *children[8]; } astNode; astNode *tokenize(char *line);