| 47 | static void fs_close(FSDevice *fs, FSFile *f); |
| 48 | |
| 49 | struct FSFile { |
| 50 | uint32_t uid; |
| 51 | char *path; /* complete path */ |
| 52 | BOOL is_opened; |
| 53 | BOOL is_dir; |
| 54 | union { |
| 55 | int fd; |
| 56 | DIR *dirp; |
| 57 | } u; |
| 58 | }; |
| 59 | |
| 60 | static void fs_delete(FSDevice *fs, FSFile *f) |
| 61 | { |
nothing calls this directly
no outgoing calls
no test coverage detected