Corrected Changelog entries for ri-gcc-warnings.m4
[midnight-commander.git] / vfs / local.h
bloba2a47a27d48a39ad712e459f6d14d7f0a88627ee
1 #ifndef _VFS_LOCAL_H_
2 #define _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);
15 #ifdef HAVE_MMAP
16 extern caddr_t local_mmap (struct vfs_class *me, caddr_t addr, size_t len,
17 int prot, int flags, void *data, off_t offset);
18 extern int local_munmap (struct vfs_class *me, caddr_t addr, size_t len, void *data);
19 #endif
21 #endif