10 lines
156 B
C
10 lines
156 B
C
#ifndef READER_H
|
|
#define READER_H
|
|
|
|
#include "memory_pool.h"
|
|
|
|
const expression_t *
|
|
read_expression(memory_pool_t *pool, const char *input, int len);
|
|
|
|
#endif
|