swh:1:snp:ff2a11cd2e44dd19ec3814028ef2ce6605664e63
Raw File
Tip revision: faa952ec7d95b916a2fb26559cb6541f306cdaff authored by Eric Fischer on 26 July 2018, 23:17:08 UTC
Merge pull request #615 from mapbox/generate-ids
Tip revision: faa952e
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