Revision 2234e37883129f833562f35103f5ed5fab79649c authored by Eric Fischer on 22 November 2017, 20:49:40 UTC, committed by Eric Fischer on 22 November 2017, 20:49:40 UTC
1 parent 8230987
Raw File
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