Revision a508f4d11bd6d4dfd7ca71bb82ad34dd6ffbf8cd authored by Eric Fischer on 11 August 2018, 00:16:58 UTC, committed by Eric Fischer on 11 August 2018, 00:16:58 UTC
2 parent s f4147f1 + f0517d0
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