- Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathimpl.h
More file actions
Latest commit
13 lines (10 loc) · 340 Bytes
/
Copy pathimpl.h
File metadata and controls
13 lines (10 loc) · 340 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef_EXECFS_IMPL_H_
#define_EXECFS_IMPL_H_
#include<string.h>
#include"entry.h"
#include"fuse.h"
intfile_open(entry_t*e, unsigned intrights, info_t*fi);
intfile_read(char*buf, size_tsize, off_toffset, info_t*fi);
intfile_write(constchar*buf, size_tsize, off_toffset, info_t*fi);
intfile_close(info_t*fi);
#endif