https://github.com/mapbox/tippecanoe
Raw File
Tip revision: 97ace997ff2d709fe2e26e2dda909cf4afd458ac authored by Eric Fischer on 26 August 2020, 19:51:29 UTC
Merge pull request #880 from mapbox/version-1.36.0
Tip revision: 97ace99
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