Revision 31c4d4850cb285339f9e4d9e1a5d773d9baca22a authored by Eric Fischer on 04 April 2016, 20:22:23 UTC, committed by Eric Fischer on 04 April 2016, 20:22:23 UTC
1 parent 2fe841c
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