Revision 60318e664e9d654038580c593114bcb85d2e5aa1 authored by Eric Fischer on 26 April 2016, 23:51:13 UTC, committed by Eric Fischer on 27 April 2016, 17:45:33 UTC
1 parent 6a37ea4
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