home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / lisp / eulisp / feel0_89.lha / Feel / AddOns / nprint.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-06-06  |  350 b   |  19 lines

  1. /* 
  2.   * nio.h
  3.   * header for new print/read junk
  4.   * 
  5.   */
  6.  
  7. /* Structure of a file */
  8. /* NB. A file can be open for 
  9.    either reading or writing
  10.    its somebody else's problem to
  11.    check the correctness of this */
  12.  
  13. #define file_name(x)    slotref(x,0)
  14. #define file_pointer(x) slotref(x,1)
  15. #define file_mode(x)    slotref(x,2)
  16.  
  17. #define N_SLOTS_IN_FILE 3
  18.  
  19.