https://github.com/mapbox/tippecanoe
Raw File
Tip revision: 6a7a13917072f41ba4278363554499d3add07413 authored by Eric Fischer on 25 August 2016, 20:45:12 UTC
Merge pull request #288 from mapbox/bad-polygon-revival
Tip revision: 6a7a139
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