Revision 652abc9a62553b5fa0bbacd6ea3ba53ef86210b6 authored by Eric Fischer on 10 March 2016, 20:15:49 UTC, committed by Eric Fischer on 10 March 2016, 20:15:49 UTC
1 parent c387af4
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