diff eval.h @ 16:9dda765ee85c

expression evaluator
author David A. Holland
date Mon, 20 Dec 2010 00:32:20 -0500
parents f6177d3ed5c2
children 76c114899f63
line wrap: on
line diff
--- a/eval.h	Sun Dec 19 21:42:01 2010 -0500
+++ b/eval.h	Mon Dec 20 00:32:20 2010 -0500
@@ -1,1 +1,3 @@
-bool eval(char *expr);
+#include <stdbool.h>
+
+bool eval(struct place *p, char *expr);