Revision 5490f3e15f71f8e7ccf1c184809a63ac06622dbd authored by Eric Fischer on 27 April 2016, 23:41:41 UTC, committed by Eric Fischer on 28 April 2016, 18:52:09 UTC
1 parent 666565e
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