diff options
author | reinelt <reinelt@3ae390bd-cb1e-0410-b409-cd5a39f66f1f> | 2004-06-20 10:09:56 +0000 |
---|---|---|
committer | reinelt <reinelt@3ae390bd-cb1e-0410-b409-cd5a39f66f1f> | 2004-06-20 10:09:56 +0000 |
commit | 7ac3e2a7d2c23ea71adeb56d8afbe1b1cbeee4df (patch) | |
tree | c9fe5fa4426d7334d8486a3a7e59c64a43d2ef9e /evaluator.h | |
parent | e4626159694ea6774386faa2f0d2fb517de1eb8b (diff) | |
download | lcd4linux-7ac3e2a7d2c23ea71adeb56d8afbe1b1cbeee4df.tar.gz |
[lcd4linux @ 2004-06-20 10:09:52 by reinelt]
'const'ified the whole source
git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@476 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
Diffstat (limited to 'evaluator.h')
-rw-r--r-- | evaluator.h | 18 |
1 files changed, 11 insertions, 7 deletions
diff --git a/evaluator.h b/evaluator.h index 12b52ba..6b5339c 100644 --- a/evaluator.h +++ b/evaluator.h @@ -1,4 +1,4 @@ -/* $Id: evaluator.h,v 1.6 2004/03/11 06:39:59 reinelt Exp $ +/* $Id: evaluator.h,v 1.7 2004/06/20 10:09:56 reinelt Exp $ * * expression evaluation * @@ -23,6 +23,10 @@ * * * $Log: evaluator.h,v $ + * Revision 1.7 2004/06/20 10:09:56 reinelt + * + * 'const'ified the whole source + * * Revision 1.6 2004/03/11 06:39:59 reinelt * big patch from Martin: * - reuse filehandles @@ -76,22 +80,22 @@ typedef struct { } RESULT; -int SetVariable (char *name, RESULT *value); -int SetVariableNumeric (char *name, double value); -int SetVariableString (char *name, char *value); +int SetVariable (const char *name, RESULT *value); +int SetVariableNumeric (const char *name, const double value); +int SetVariableString (const char *name, const char *value); -int AddFunction (char *name, int argc, void (*func)()); +int AddFunction (const char *name, const int argc, void (*func)()); void DeleteVariables (void); void DeleteFunctions (void); void DelResult (RESULT *result); -RESULT* SetResult (RESULT **result, int type, void *value); +RESULT* SetResult (RESULT **result, const int type, const void *value); double R2N (RESULT *result); char* R2S (RESULT *result); -int Compile (char *expression, void **tree); +int Compile (const char *expression, void **tree); int Eval (void *tree, RESULT *result); void DelTree (void *tree); |