shithub: fsgen

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