shithub: fsgen

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