From 3b33fa0aeb5262335cd708b167caad8f41b8a5dd Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Thu, 29 Mar 2018 13:36:29 -0400 Subject: documentation, error fixes, organization --- parser.h | 18 ------------------ 1 file changed, 18 deletions(-) (limited to 'parser.h') diff --git a/parser.h b/parser.h index 0002d06..f1ffe70 100644 --- a/parser.h +++ b/parser.h @@ -101,8 +101,6 @@ void ipush(instance *it, uint32_t v); */ variable *igetarg(instance *it, uint32_t n); - - /** * Parses the given line, returning compiled data to run. * For internal use only. @@ -122,20 +120,4 @@ variable **iparse(instance *it, const char *s); */ variable *isolve(instance *it, variable **ops, uint32_t count); -/** - * Makes a number out of the given variable. - * @param v the variable to use, if zero one is malloc'd - * @param f the number to assign the variable - * @return the new float variable - */ -variable *make_varf(variable *v, float f); - -/** - * Makes a string out of the given variable. - * @param v the variable to use, if zero one is malloc'd - * @param f the string to assign the variable - * @return the new string variable - */ -variable *make_vars(variable *v, const char *s); - #endif // PARSER_H_ -- cgit v1.2.3