Revision 0fa305432b60d91f55992bf6f4085d5c4ae2690e authored by Eric Fischer on 11 February 2016, 20:16:46 UTC, committed by Eric Fischer on 11 February 2016, 20:16:46 UTC
1 parent ea304d3
Raw File
memfile.h
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