Revision 333956ce42e60c66c80873ff165b8b4c1d6dc964 authored by Eric Fischer on 12 January 2016, 01:29:06 UTC, committed by Eric Fischer on 12 January 2016, 01:29:06 UTC
1 parent 2d16577
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