blob: 23eee88bf3ea19d1946b155240b720855a364ea9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef PARSER_H
#define PARSER_H
#include "../lib/sys/sizes.h"
typedef struct expression_list_t__ {
char *call;
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
|