Changed variable names.

This commit is contained in:
Lewis Van Winkle
2016-01-24 21:02:47 -06:00
parent cd9f6a22cb
commit 0dcd120d51
2 changed files with 4 additions and 4 deletions

View File

@@ -55,7 +55,7 @@ double te_interp(const char *expression, int *error);
/* Parses the input expression and binds variables. */
/* Returns NULL on error. */
te_expr *te_compile(const char *expression, const te_variable *lookup, int lookup_len, int *error);
te_expr *te_compile(const char *expression, const te_variable *variables, int var_count, int *error);
/* Evaluates the expression. */
double te_eval(const te_expr *n);