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

  1.  
  2. /*
  3.  * expr.h
  4.  * Copyright © 1992 Niklas Röjemo
  5.  */
  6.  
  7. #ifndef _expr_h
  8. #define _expr_h
  9.  
  10. #ifndef _value_h
  11. #include "value.h"
  12. #endif
  13.  
  14. void   exprBuild(void); /* Parse the input */
  15. Value  exprEval(ValueTag legal);
  16.  
  17. #endif
  18.