More code highlighting.

This commit is contained in:
Lewis Van Winkle
2016-01-21 14:49:57 -06:00
parent 01a4d9355a
commit 9019a72350

View File

@@ -114,11 +114,13 @@ This produces the output:
TINYEXPR defines only five functions:
```C
double te_interp(const char *expression, int *error);
te_expr *te_compile(const char *expression, const te_variable *lookup, int lookup_len, int *error);
double te_eval(te_expr *n);
void te_print(const te_expr *n);
void te_free(te_expr *n);
```
**te_interp** takes an expression and immediately returns the result of it. If
an error pointer is passed in, *te_interp* will set it to 0 for success or