home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / c / library / dos / bc4lib / fileio.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-05-09  |  505 b   |  33 lines

  1.  
  2.  
  3. #include <stdio.h>
  4.  
  5.  
  6. #ifdef __cplusplus
  7. extern "C" {
  8. #endif
  9.  
  10. int writefile2(FILE *f,char *s);
  11. int filefound(char *s);
  12. int readfile(FILE *f,char *s);
  13. int writefile(FILE *f,char *s);
  14. FILE *infile(char *s);
  15. FILE *outfile(char *s);
  16. FILE *appendfile(char *s);
  17. FILE *appendfilebin(char *s);
  18. FILE *infilebin(char *s);
  19. FILE *outfilebin(char *s);
  20. int readfilebin(FILE *f,void *rec,int recsize);
  21. int writefilebin(FILE *f,void *rec,int recsize);
  22.  
  23.  
  24. #ifdef __cplusplus
  25. }
  26. #endif
  27.  
  28.  
  29.  
  30.  
  31.  
  32.  
  33.