https://github.com/mapbox/tippecanoe
Raw File
Tip revision: 77b451f2c8f6cd8e4e4e138d83e29aa5e4791b0d authored by Eric Fischer on 12 October 2015, 19:51:55 UTC
Fix some rounding error just by staying in double precision
Tip revision: 77b451f
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