Revision 32fed3b78a44c0d9bf3bf4d256d88ef97f15bdf7 authored by Eric Fischer on 28 June 2016, 22:27:19 UTC, committed by Eric Fischer on 28 June 2016, 22:29:37 UTC
1 parent 5d06f01
Raw File
memfile.hpp
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