aboutsummaryrefslogtreecommitdiffstats
path: root/evaluator.h
diff options
context:
space:
mode:
authorreinelt <>2004-03-11 06:39:59 +0000
committerreinelt <>2004-03-11 06:39:59 +0000
commitb241d736825d0469b7716847ee4ef5de269d2423 (patch)
treee3f51842280e06133de00726fa987765d4464f10 /evaluator.h
parent888c37c1b1aa181c76253af8425b2bbbac4bbc4a (diff)
downloadlcd4linux-b241d736825d0469b7716847ee4ef5de269d2423.tar.gz
[lcd4linux @ 2004-03-11 06:39:58 by reinelt]
big patch from Martin: - reuse filehandles - memory leaks fixed - earlier busy-flag checking with HD44780 - reuse memory for strings in RESULT and hash - netdev_fast to wavid time-consuming regex
Diffstat (limited to '')
-rw-r--r--evaluator.h11
1 files changed, 10 insertions, 1 deletions
diff --git a/evaluator.h b/evaluator.h
index 58bf4ca..12b52ba 100644
--- a/evaluator.h
+++ b/evaluator.h
@@ -1,4 +1,4 @@
-/* $Id: evaluator.h,v 1.5 2004/03/06 20:31:16 reinelt Exp $
+/* $Id: evaluator.h,v 1.6 2004/03/11 06:39:59 reinelt Exp $
*
* expression evaluation
*
@@ -23,6 +23,14 @@
*
*
* $Log: evaluator.h,v $
+ * Revision 1.6 2004/03/11 06:39:59 reinelt
+ * big patch from Martin:
+ * - reuse filehandles
+ * - memory leaks fixed
+ * - earlier busy-flag checking with HD44780
+ * - reuse memory for strings in RESULT and hash
+ * - netdev_fast to wavid time-consuming regex
+ *
* Revision 1.5 2004/03/06 20:31:16 reinelt
* Complete rewrite of the evaluator to get rid of the code
* from mark Morley (because of license issues).
@@ -63,6 +71,7 @@
typedef struct {
int type;
double number;
+ int length;
char *string;
} RESULT;