Reverted the use of bool in favour of gboolean
[midnight-commander.git] / vfs / local.h
blob03d5ce29a95624545cd70ab74eddd052757125ae
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 ssize_t 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 off_t local_lseek (void *data, off_t offset, int whence);
16 #endif