shithub: fsgen

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