https://github.com/mapbox/tippecanoe
Raw File
Tip revision: 5e02bdd90ad06c5ea25794495b10227a49167068 authored by Eric Fischer on 07 January 2016, 19:51:58 UTC
Merge pull request #142 from mapbox/consistent-clip
Tip revision: 5e02bdd
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