Revision eb5c78482a2bdee9d869b1cf5f79af7f4f2018f5 authored by Eric Fischer on 20 October 2015, 19:01:10 UTC, committed by Eric Fischer on 20 October 2015, 19:01:10 UTC
1 parent a38668a
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