shithub: fsgen

ref: fbdac038aad6c5873e6ce3323a92591a14575583
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;
};