Revision fa7a52d032c6b89f95ee27f79902bb93e8e4e17a authored by Eric Fischer on 24 May 2016, 00:44:41 UTC, committed by Eric Fischer on 24 May 2016, 00:44:41 UTC
1 parent 4638c6f
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