https://github.com/mapbox/tippecanoe
Raw File
Tip revision: 49aff99e13def774126eaeaa5360a4d9d3f09f30 authored by Eric Fischer on 07 June 2016, 19:23:08 UTC
First stage of respecting original winding order
Tip revision: 49aff99
memfile.hpp
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