https://github.com/mapbox/tippecanoe
Raw File
Tip revision: 235939ea232b0ec445f7116d2d9dfe23fde09532 authored by Dane Springmeyer on 27 April 2016, 00:03:00 UTC
Merge pull request #226 from mapbox/c++-math
Tip revision: 235939e
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