shithub: fsgen

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