https://github.com/mapbox/tippecanoe
Raw File
Tip revision: 08a6607b0b90adda0f2f9412608376c4865949cd authored by Eric Fischer on 18 December 2015, 19:29:00 UTC
Merge pull request #127 from mapbox/maxzoom
Tip revision: 08a6607
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