aboutsummaryrefslogtreecommitdiffstats
path: root/evaluator.h
diff options
context:
space:
mode:
authorreinelt <reinelt@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>2006-01-30 06:11:36 +0000
committerreinelt <reinelt@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>2006-01-30 06:11:36 +0000
commitf521492608acc6f19b5053512fe9eb68fb92ac79 (patch)
treebc0cc8b97e0431b5d58fae80d619eae61b04507e /evaluator.h
parent2523e50fbb5a076f9535c18dcce9ed7a0716e28d (diff)
downloadlcd4linux-f521492608acc6f19b5053512fe9eb68fb92ac79.tar.gz
[lcd4linux @ 2006-01-30 06:11:36 by reinelt]
changed Result->length to Result->size git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@627 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
Diffstat (limited to 'evaluator.h')
-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;