shithub: fsgen

ref: 7e63a4bdcc41ca93bc1d203c8d15de913bb09f22
dir: /dat.h/

View raw version
typedef struct VFile VFile;

#pragma varargck type "V" VFile*
struct VFile {
	char *path;
	int isdir;
	int hasls;
	int hasread;
	int haswrite;
	int hasstat;
	char **parts;
	VFile *next;
};