swh:1:snp:ff2a11cd2e44dd19ec3814028ef2ce6605664e63
Raw File
Tip revision: e99f39b162d0db4fcce309908003b4f8d6380f9d authored by Eric Fischer on 14 August 2017, 23:27:50 UTC
More progress on reading vtzero
Tip revision: e99f39b
pool.hpp
#ifndef POOL_HPP
#define POOL_HPP

struct stringpool {
	long long left;
	long long right;
	long long off;
};

long long addpool(struct memfile *poolfile, struct memfile *treefile, const char *s, char type);

#endif
back to top