Revision 3662f1a66bdfdeb4e243042a65ca4b0dff31d0c2 authored by Eric Fischer on 27 April 2016, 21:59:20 UTC, committed by Eric Fischer on 27 April 2016, 21:59:20 UTC
1 parent a52733e
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