tippecanoe/pool.hpp

13 lines
215 B
C++
Raw Normal View History

#ifndef POOL_HPP
#define POOL_HPP
struct stringpool {
2016-04-27 22:10:26 +00:00
long long left;
long long right;
long long off;
};
long long addpool(struct memfile *poolfile, struct memfile *treefile, const char *s, char type);
#endif