Revision 82309874059e32fffcfd1c36093fd2f296a378fc authored by Eric Fischer on 22 November 2017, 19:51:18 UTC, committed by Eric Fischer on 22 November 2017, 19:54:25 UTC
1 parent 9964784
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