home *** CD-ROM | disk | FTP | other *** search
/ ARM Club 3 / TheARMClub_PDCD3.iso / hensa / disk / archive / nspark_1 / nspark-1.7.5 / io.h < prev    next >
C/C++ Source or Header  |  1994-12-12  |  821b  |  34 lines

  1. /*
  2.  * file input/output function prototypes
  3.  *
  4.  * $Header: io.h 1.3 92/12/09 $
  5.  * $Log:    io.h,v $
  6.  * Revision 1.3  92/12/09  11:41:20  duplain
  7.  * #ifdef'd out write_halfword() and write_word().
  8.  * 
  9.  * Revision 1.2  92/10/07  10:37:46  duplain
  10.  * Changed order of function prototypes in line with io.c r1.5 .
  11.  * 
  12.  * Revision 1.1  92/09/29  18:02:35  duplain
  13.  * Initial revision
  14.  * 
  15.  */
  16.  
  17. #ifndef __IO_H
  18. #define __IO_H
  19.  
  20. #include "cproto.h"
  21.  
  22. Ferror check_stream P__((FILE *fp));
  23. Byte read_byte P__((FILE *ifp));
  24. Halfword read_halfword P__((FILE *ifp));
  25. Word read_word P__((FILE *ifp));
  26. void write_byte P__((FILE *ofp, Byte byte));
  27. #ifdef notyet
  28. void write_halfword P__((FILE *ofp, Halfword halfword));
  29. void write_word P__((FILE *ofp, Word word));
  30. #endif /* notyet */
  31. Header *read_header P__((FILE *ifp));
  32.  
  33. #endif /* __IO_H */
  34.