home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 9 / 09.iso / e / e050 / 1.ddi / OPSTYP.H < prev    next >
Encoding:
C/C++ Source or Header  |  1986-08-19  |  692 b   |  18 lines

  1.  
  2. /*
  3. **    OPSTYP.H: Type declarations to allow OPS83 types to be used in
  4. **    C programs.  The declarations in this file are machine-dependent;
  5. **    the declarations below are for OPS83 running on PC's.
  6. **
  7. **    It is important to remember that OPS83 passes arguments by reference
  8. **    and not value.  As a result, formal parameters in C routines are
  9. **    generally declared type pointer to X rather than type X.
  10. */
  11.  
  12. typedef int    opsInteger;        /* OPS83 integers */
  13. typedef int    opsSymbol;        /* OPS83 symbols */
  14. typedef char    opsChar;        /* OPS83 characters */
  15. typedef char    opsLogical;        /* OPS83 logicals */
  16. typedef double    opsReal;        /* OPS83 reals */
  17. typedef char    opsName[128];        /* OPS83 names */
  18.