8 lines
137 B
C
8 lines
137 B
C
#ifndef PARSE_EXP_H
|
|
#define PARSE_EXP_H
|
|
|
|
#include "queue.h"
|
|
|
|
struct queue *parse_expression(const char *str);
|
|
|
|
#endif /* ! PARSE_EXP_H */ |