https://github.com/mapbox/tippecanoe
Raw File
Tip revision: 923a0699f1eec72af409229116f1bd2690242036 authored by Eric Fischer on 23 March 2016, 23:19:19 UTC
Add an option to run single-threaded instead of using pthreads
Tip revision: 923a069
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