https://github.com/mapbox/tippecanoe
Raw File
Tip revision: 4beec5198cf6896cce6ec4939aaa60e9b587c005 authored by Eric Fischer on 03 May 2017, 00:12:44 UTC
Put features in sequence order, in the interest of greater clarity
Tip revision: 4beec51
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