https://github.com/mapbox/tippecanoe
Raw File
Tip revision: 6db02e8457937e5ef895fe29ea23d0d94e835273 authored by Eric Fischer on 14 May 2018, 22:08:51 UTC
Merge pull request #568 from mapbox/gzip-input
Tip revision: 6db02e8
pool.hpp
#ifndef POOL_HPP
#define POOL_HPP

struct stringpool {
	unsigned long left = 0;
	unsigned long right = 0;
	unsigned long off = 0;
};

long long addpool(struct memfile *poolfile, struct memfile *treefile, const char *s, char type);

#endif
back to top