https://github.com/mapbox/tippecanoe
Raw File
Tip revision: 2607a76c63b9d45716ad14cbcf2e39d07355afc4 authored by Eric Fischer on 21 April 2016, 17:36:51 UTC
Merge pull request #215 from mapbox/no-clipping
Tip revision: 2607a76
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