pratt/src/eval.h
Bruno BELANYI 83c75de773 pratt: add parser
This is based on C's operator precedence rules
2020-11-08 18:42:53 +01:00

9 lines
122 B
C

#ifndef ONCE_H
#define ONCE_H
#include <stdbool.h>
bool eval_string(const char *input, int *res);
#endif /* !ONCE_H */