Revision 3bb87227ec440222ff3af536dd76ed392555de9c authored by Eric Fischer on 19 October 2015, 20:32:02 UTC, committed by Eric Fischer on 19 October 2015, 20:32:02 UTC
1 parent ef5fdf4
Raw File
memfile.h
struct memfile {
	int fd;
	char *map;
	long long len;
	long long off;
};

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