https://github.com/mapbox/tippecanoe
Raw File
Tip revision: a1da515dc9c8af9ab5dc0424dd24a0cca84ca5ed authored by Eric Fischer on 10 February 2016, 20:01:29 UTC
Bump version number
Tip revision: a1da515
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