home *** CD-ROM | disk | FTP | other *** search
/ RISC DISC 2 / RISC_DISC_2.iso / pd_share / utilities / cli / nspark / os_h < prev    next >
Encoding:
Text File  |  1993-08-20  |  661 b   |  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.