diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2018-03-08 12:17:12 -0500 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2018-03-08 12:17:12 -0500 |
commit | 28447df15ac80d7dad1f4889d3d61fe7bfe42a12 (patch) | |
tree | dcc38b9a21e9771af0ce3d243660a59bd4992c52 /variable.h | |
parent | 40e157ffa2ae741088d2fbea22c9042b85daf108 (diff) |
implicit multiply, negatives, solve
Diffstat (limited to 'variable.h')
-rw-r--r-- | variable.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -25,4 +25,7 @@ variable *make_vars(variable *v, const char *s); variable *make_varf(variable *v, uint8_t fromc, uint32_t func); variable *make_vare(variable *v, const char *e); +int try_number(variable *v, const char *text); +int try_variable(char **name, const char *text); + #endif // VARIABLE_H_ |