Revision bd5dc4ad181be85c6b00d28e204fafbf02934c7b authored by Eric Fischer on 26 April 2016, 21:26:10 UTC, committed by Eric Fischer on 26 April 2016, 21:26:10 UTC
Upgrade Clipper to 07b828b1 to fix self-intersecting polygons
2 parent s d72639b + 77bc24d
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