Document "Only directories" checkbox
[midnight-commander/osp/petrarad.git] / vfs / local.h
blobdaa894002763c722f39c7d1104cf3497f6f3c9ee
1 #ifndef MC_VFS_LOCAL_H
2 #define MC_VFS_LOCAL_H
4 #include "vfs-impl.h"
6 extern void init_localfs (void);
8 /* these functions are used by other filesystems, so they are
9 * published here. */
10 extern int local_close (void *data);
11 extern int local_read (void *data, char *buffer, int count);
12 extern int local_fstat (void *data, struct stat *buf);
13 extern int local_errno (struct vfs_class *me);
14 extern int local_lseek (void *data, off_t offset, int whence);
16 #endif