aboutsummaryrefslogtreecommitdiffstats
path: root/evaluator.h
diff options
context:
space:
mode:
authorreinelt <>2006-01-30 06:11:36 +0000
committerreinelt <>2006-01-30 06:11:36 +0000
commit21c208ce77480aed4e75cd2bae698b9cda836c3e (patch)
treebc0cc8b97e0431b5d58fae80d619eae61b04507e /evaluator.h
parent9597a85a3a5c94664f0026a85a75daa9c58dcb0b (diff)
downloadlcd4linux-21c208ce77480aed4e75cd2bae698b9cda836c3e.tar.gz
[lcd4linux @ 2006-01-30 06:11:36 by reinelt]
changed Result->length to Result->size
Diffstat (limited to '')
-rw-r--r--evaluator.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/evaluator.h b/evaluator.h
index 6c3016c..10bd807 100644
--- a/evaluator.h
+++ b/evaluator.h
@@ -1,4 +1,4 @@
-/* $Id: evaluator.h,v 1.11 2005/05/08 04:32:44 reinelt Exp $
+/* $Id: evaluator.h,v 1.12 2006/01/30 06:11:36 reinelt Exp $
*
* expression evaluation
*
@@ -23,6 +23,9 @@
*
*
* $Log: evaluator.h,v $
+ * Revision 1.12 2006/01/30 06:11:36 reinelt
+ * changed Result->length to Result->size
+ *
* Revision 1.11 2005/05/08 04:32:44 reinelt
* CodingStyle added and applied
*
@@ -90,8 +93,8 @@
typedef struct {
int type;
+ int size;
double number;
- int length;
char *string;
} RESULT;