shithub: fsgen

ref: 0ad44955a094502fa3bf9a5cef637bc62072f91c
dir: /dat.h/

View raw version
typedef struct VFile VFile;

#pragma varargck type "V" VFile*
struct VFile {
	char *path;
	int isdir;
	int hasread;
	int haswrite;
	int hasstat;
	char **parts;
	VFile *next;
};