https://github.com/mapbox/tippecanoe
Raw File
Tip revision: 9d48d6a93d04c800c3736e679992dd12f0f3acdc authored by Eric Fischer on 07 April 2016, 23:50:01 UTC
Merge pull request #208 from mapbox/simplify-crash
Tip revision: 9d48d6a
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