Revision 0304d164d86b3982f2cc849d10a95df90d0772b3 authored by Eric Fischer on 29 March 2018, 16:11:20 UTC, committed by GitHub on 29 March 2018, 16:11:20 UTC
Instruction on installing on Ubuntu
2 parent s 3cea125 + d5b0da3
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