shithub: fsgen

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