https://github.com/mapbox/tippecanoe
Raw File
Tip revision: 502d26914371a3421f209b83afef43f9a97c7847 authored by Eric Fischer on 08 January 2016, 21:28:31 UTC
Merge pull request #145 from mapbox/fix-layer-merge
Tip revision: 502d269
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