#ifndef PARSER_H #define PARSER_H #include "../lib/sys/sizes.h" typedef struct { const char *head; const char **args; } expression_t; typedef struct expression_list_t__ { expression_t expression; struct expression_list_t__ *next; } expression_list_t; expression_list_t *new_expression_from_line(char *line); void free_expression(expression_list_t *expression); #endif