Revision 0f1d2e4220df0dfb20ac9396c43d4f814202f2ea authored by Eric Fischer on 03 May 2016, 23:39:26 UTC, committed by Eric Fischer on 03 May 2016, 23:39:26 UTC
1 parent 43ffd6f
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