Revision cf806baca296dcc40c629065aa9a2dc39643d14b authored by Eric Fischer on 02 April 2016, 00:36:09 UTC, committed by Eric Fischer on 02 April 2016, 00:36:09 UTC
1 parent 6013953
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