00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025 #ifndef _H_exprnops
00026
00027 #define _H_exprnops
00028
00029 #ifndef _H_expressn
00030 #include "expressn.h"
00031 #endif
00032
00033 #ifdef LOCALE
00034 #undef LOCALE
00035 #endif
00036
00037 #ifdef _EXPRNOPS_SOURCE_
00038 #define LOCALE
00039 #else
00040 #define LOCALE extern
00041 #endif
00042
00043 LOCALE intBool ConstantExpression(struct expr *);
00044 LOCALE void PrintExpression(void *,char *,struct expr *);
00045 LOCALE long ExpressionSize(struct expr *);
00046 LOCALE int CountArguments(struct expr *);
00047 LOCALE struct expr *CopyExpression(void *,struct expr *);
00048 LOCALE intBool ExpressionContainsVariables(struct expr *,int);
00049 LOCALE intBool IdenticalExpression(struct expr *,struct expr *);
00050 LOCALE struct expr *GenConstant(void *,unsigned short,void *);
00051 #if ! RUN_TIME
00052 LOCALE int CheckArgumentAgainstRestriction(void *,struct expr *,int);
00053 #endif
00054 LOCALE intBool ConstantType(int);
00055 LOCALE struct expr *CombineExpressions(void *,struct expr *,struct expr *);
00056 LOCALE struct expr *AppendExpressions(struct expr *,struct expr *);
00057
00058 #endif
00059
00060