MCPcopy Create free account
hub / github.com/ading2210/linuxpdf / FSFile

Class FSFile

tinyemu/fs_disk.c:49–58  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

47static void fs_close(FSDevice *fs, FSFile *f);
48
49struct 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
60static void fs_delete(FSDevice *fs, FSFile *f)
61{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected