Revision 4cee508e95beaabbec73f06ed43bb02ca982dcf9 authored by Eric Fischer on 23 April 2016, 00:51:35 UTC, committed by Eric Fischer on 23 April 2016, 00:51:35 UTC
1 parent 135aea8
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