Revision ec7d72925aea7df9de8df8a95b69b99e2db07628 authored by Eric Fischer on 29 January 2016, 01:01:13 UTC, committed by Eric Fischer on 29 January 2016, 01:01:13 UTC
1 parent 886b2c3
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