https://github.com/mapbox/tippecanoe
Raw File
Tip revision: 0ff0bf1ad90d38ac3140c55bde3c915ff20aed6b authored by Eric Fischer on 28 October 2015, 21:38:32 UTC
Merge pull request #105 from mapbox/polygon-close
Tip revision: 0ff0bf1
memfile.h
struct memfile {
	int fd;
	char *map;
	long long len;
	long long off;
};

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