From ffccd5b2b05243e7976db80f90f453dccfae9886 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Mon, 15 Apr 2024 22:22:03 +0200 Subject: Adding upstream version 3:4.8.30. Signed-off-by: Daniel Baumann --- src/vfs/local/local.h | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 src/vfs/local/local.h (limited to 'src/vfs/local/local.h') diff --git a/src/vfs/local/local.h b/src/vfs/local/local.h new file mode 100644 index 0000000..8929d10 --- /dev/null +++ b/src/vfs/local/local.h @@ -0,0 +1,32 @@ +/** + * \file + * \brief Header: local FS + */ + +#ifndef MC__VFS_LOCAL_H +#define MC__VFS_LOCAL_H + +#include "lib/vfs/vfs.h" + +/*** typedefs(not structures) and defined constants **********************************************/ + +/*** enums ***************************************************************************************/ + +/*** structures declarations (and typedefs of structures)*****************************************/ + +/*** global variables defined in .c file *********************************************************/ + +/*** declarations of public functions ************************************************************/ + +extern void vfs_init_localfs (void); + +/* these functions are used by other filesystems, so they are + * published here. */ +extern int local_close (void *data); +extern ssize_t local_read (void *data, char *buffer, size_t count); +extern int local_fstat (void *data, struct stat *buf); +extern int local_errno (struct vfs_class *me); +extern off_t local_lseek (void *data, off_t offset, int whence); + +/*** inline functions ****************************************************************************/ +#endif -- cgit v1.2.3