/* CIO.H (c) 1996 Oliver Kraus kraus@lrs.e-technik.uni-erlangen.de */ #ifndef _CIO_H #define _CIO_H char *c_get_vol_info(const char *root, int *flags); int c_is_long_filename(void); void c_chdrive(int drive); int c_chdir(const char *newdir); int c_mkdir(const char *newdir); char *c_getcwd(void); void c_io_clear(void); void c_strncpy(char *dest, const char *src, size_t n); int c_create_path(const char *path); int c_set_path(const char *path); #endif