https://github.com/mapbox/tippecanoe
Raw File
Tip revision: 02b020a2c74da21f146a9e94f53731f90132fc83 authored by Eric Fischer on 27 October 2015, 23:48:02 UTC
Run the JSON parsers in separate threads
Tip revision: 02b020a
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