swh:1:snp:ff2a11cd2e44dd19ec3814028ef2ce6605664e63
Raw File
Tip revision: 61cbc3eca0eaf83e7ee2b11708a803c4c1b4c2e2 authored by Eric Fischer on 01 March 2018, 00:25:11 UTC
Merge pull request #536 from mapbox/accumulate-attribute
Tip revision: 61cbc3e
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