swh:1:snp:ff2a11cd2e44dd19ec3814028ef2ce6605664e63
Raw File
Tip revision: 30858515e322a02f478618bc83b19b1649508e6e authored by Eric Fischer on 27 June 2019, 21:02:57 UTC
Reduce precision to fix test flakiness
Tip revision: 3085851
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