Revision 2460b5712f32bdd3dbc4026dbb57d5116cbcbc92 authored by Dane Springmeyer on 23 December 2015, 01:20:59 UTC, committed by Dane Springmeyer on 23 December 2015, 01:20:59 UTC
1 parent 71463c1
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