home *** CD-ROM | disk | FTP | other *** search
/ ARM Club 3 / TheARMClub_PDCD3.iso / hensa / programming / as_1 / source_h_expr < prev    next >
Encoding:
C/C++ Source or Header  |  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.