swh:1:snp:ff2a11cd2e44dd19ec3814028ef2ce6605664e63
Raw File
Tip revision: d64ac19f115bef509f34cfc685ff27644e033e3c authored by Eric Fischer on 19 June 2018, 22:10:28 UTC
Merge pull request #591 from mapbox/attribute-filter
Tip revision: d64ac19
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