aboutsummaryrefslogtreecommitdiffstats
path: root/parser.h
diff options
context:
space:
mode:
authorClyne Sullivan <tullivan99@gmail.com>2018-03-29 13:36:29 -0400
committerClyne Sullivan <tullivan99@gmail.com>2018-03-29 13:36:29 -0400
commit3b33fa0aeb5262335cd708b167caad8f41b8a5dd (patch)
treecb34ba93ecca6f3bbc936acdf92e6d347219a9cc /parser.h
parent7faeef296d8b0041ae340c3febf7eb0a78e60b0f (diff)
documentation, error fixes, organization
Diffstat (limited to 'parser.h')
-rw-r--r--parser.h18
1 files changed, 0 insertions, 18 deletions
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_