12 lines
235 B
C
12 lines
235 B
C
#ifndef READER_H
|
|
#define READER_H
|
|
|
|
#include "memory_pool.h"
|
|
|
|
int read_line(int (*get_byte)(void), char *buffer, int buffer_size);
|
|
|
|
int parse_expression(
|
|
memory_pool_t *pool, const char *input, int len, expression_t **out);
|
|
|
|
#endif
|