https://github.com/mapbox/tippecanoe
Raw File
Tip revision: 7140a3dd912024326bf49541ad10dcf02b47080a authored by Eric Fischer on 17 March 2016, 18:54:24 UTC
Merge pull request #186 from mapbox/resolution-doc
Tip revision: 7140a3d
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