shithub: fsgen

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