shithub: fsgen

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