https://github.com/mapbox/tippecanoe
Raw File
Tip revision: 022f42c23be1727b5169832744c44a3903580675 authored by Eric Fischer on 20 June 2015, 00:47:04 UTC
Merge branch 'master' into consistent
Tip revision: 022f42c
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