shithub: fsgen

ref: e49f718071886411a94f42ebf007f08eca4cfa9d
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;
	char **parts;
	VFile *next;
};