Remove read_expression and use parse_expression directly

This commit is contained in:
2024-10-24 22:28:12 +01:00
parent b44bd100ca
commit f591809d1f
4 changed files with 57 additions and 61 deletions

View File

@@ -5,7 +5,7 @@
int read_line(int (*get_byte)(void), char *buffer, int buffer_size);
const expression_t *
read_expression(memory_pool_t *pool, const char *input, int len);
int parse_expression(
memory_pool_t *pool, const char *input, int len, expression_t **out);
#endif