Merge branch '1396_with_search_engine'
[midnight-commander.git] / vfs / local.h
blob176279b8b4f121342359531306c6b412bdc2ee53
2 /**
3 * \file
4 * \brief Header: local FS
5 */
7 #ifndef MC_VFS_LOCAL_H
8 #define MC_VFS_LOCAL_H
10 #include "vfs-impl.h"
12 extern void init_localfs (void);
14 /* these functions are used by other filesystems, so they are
15 * published here. */
16 extern int local_close (void *data);
17 extern ssize_t local_read (void *data, char *buffer, int count);
18 extern int local_fstat (void *data, struct stat *buf);
19 extern int local_errno (struct vfs_class *me);
20 extern off_t local_lseek (void *data, off_t offset, int whence);
22 #endif