home *** CD-ROM | disk | FTP | other *** search
/ ARM Club 3 / TheARMClub_PDCD3.iso / hensa / disk / archive / nspark_1 / nspark-1.7.5 / os.h < prev    next >
C/C++ Source or Header  |  1993-08-20  |  661b  |  31 lines

  1. /*
  2.  * Operating System specific function prototypes
  3.  *
  4.  * $Header: os.h 1.2 92/10/01 $
  5.  * $Log:    os.h,v $
  6.  * Revision 1.3  93/03/05 15:37:24   arb
  7.  * Added read() function prototype for RISCOS
  8.  *
  9.  * Revision 1.2  92/10/01  11:22:18  duplain
  10.  * Added filesize() function prototype.
  11.  * 
  12.  * Revision 1.1  92/09/29  18:02:39  duplain
  13.  * Initial revision
  14.  * 
  15.  */
  16.  
  17. #ifndef __OS_H
  18. #define __OS_H
  19.  
  20. #include "cproto.h"
  21.  
  22. Word filesize P__((char *pathname));
  23. Ftype exist P__((char *pathname));
  24. int makedir P__((char *pathname));
  25. int filestamp P__((Header *header, char *filename));
  26.  
  27. #ifdef RISCOS
  28. int read P__((int fd, void *buffer, int size)); 
  29. #endif
  30. #endif /* __OS_H */
  31.