home *** CD-ROM | disk | FTP | other *** search
/ Software Recommendations - 1998 Season 1 / DNBCD4.iso / share / DOS / ipxcopy / SRC.ZIP / SRC / CIO.H < prev    next >
Encoding:
C/C++ Source or Header  |  1996-09-12  |  472 b   |  29 lines

  1. /*
  2.  
  3.    CIO.H
  4.  
  5.    (c) 1996 Oliver Kraus
  6.  
  7.    kraus@lrs.e-technik.uni-erlangen.de
  8.  
  9. */
  10.  
  11. #ifndef _CIO_H
  12. #define _CIO_H
  13.  
  14. char *c_get_vol_info(const char *root, int *flags);
  15. int c_is_long_filename(void);
  16. void c_chdrive(int drive);
  17. int c_chdir(const char *newdir);
  18. int c_mkdir(const char *newdir);
  19. char *c_getcwd(void);
  20.  
  21. void c_io_clear(void);
  22.  
  23. void c_strncpy(char *dest, const char *src, size_t n);
  24. int c_create_path(const char *path);
  25. int c_set_path(const char *path);
  26.  
  27.  
  28. #endif
  29.