shithub: fsgen

ref: 5a60324d748e1f85d7d71b7cac75626cf2158cb7
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 *mode;
	char **parts;
	VFile *next;
};