https://github.com/mapbox/tippecanoe
Raw File
Tip revision: 26e21b0bee35504f7ec5e96de92c067ac241696d authored by Eric Fischer on 13 July 2016, 00:48:43 UTC
Merge pull request #271 from mapbox/empty-features
Tip revision: 26e21b0
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