changeset 84:6a42872a9f81

eval: Implement stub version of yeval()
author Lewin Bormann <lbo@spheniscida.de>
date Mon, 26 Aug 2019 11:03:10 +0200
parents b86bc111f4a4
children 7f0a4a258b69
files src/eval.c
diffstat 1 files changed, 8 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/eval.c	Mon Aug 26 11:03:10 2019 +0200
@@ -0,0 +1,8 @@
+#include "eval.h"
+
+#include <src/expr.h>
+
+yexpr_t yeval(yeval_state_t* state, yexpr_t* expr, bool in_place) {
+    assert(false /* yeval is not yet implemented */);
+    return yexpr_new();
+}