home *** CD-ROM | disk | FTP | other *** search
/ APDL Public Domain 1 / APDL_PD1A.iso / program / assembler / as / src / h / eval < prev    next >
Encoding:
Text File  |  1992-07-20  |  326 b   |  27 lines

  1.  
  2. /*
  3.  * eval.c
  4.  * Copyright © 1992 Niklas Röjemo
  5.  */
  6.  
  7. #ifndef _evel_h
  8. #define _evel_h
  9.  
  10. #ifndef _global_h
  11. #include "global.h"
  12. #endif
  13.  
  14. #ifndef _lex_h
  15. #include "lex.h"
  16. #endif
  17.  
  18. #ifndef _value_h
  19. #include "value.h"
  20. #endif
  21.  
  22.  
  23. BOOL evalBinop(Operator op, Value *lvalue, Value *rvalue);
  24. BOOL evalUnop(Operator op, Value *value);
  25.  
  26. #endif
  27.