Revision 5d701913ab4a54b625042e1d21f2c851675706d4 authored by Eric Fischer on 29 March 2016, 22:08:06 UTC, committed by Eric Fischer on 29 March 2016, 22:08:06 UTC
Add an option to give specific layer names to specific input files
2 parent s 72b7dc9 + 62fac4d
Raw File
memfile.h
struct memfile {
	int fd;
	char *map;
	long long len;
	long long off;
	long long tree;
};

struct memfile *memfile_open(int fd);
int memfile_close(struct memfile *file);
int memfile_write(struct memfile *file, void *s, long long len);
back to top